Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ASSET-11] Add setup.py #12

Merged
merged 3 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@ Related issue: [ASSET-000](https://pi-lab.atlassian.net/browse/ASSET-000)
- [ ] Did you pass the tests?
- [ ] Did you run the pre-process?
- [ ] Have you added and run tests to validate the changes?
- [ ] Have you updated the documentation?
- [ ] Have you updated the version in `setup.py` if you need?
Empty file removed libraries/models/enum_type.py
Empty file.
19 changes: 19 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from setuptools import setup

with open("requirements.txt") as f:
required = [require.replace("==", ">=") for require in f.read().splitlines()]

setup(
name="asset-info-v2",
version="1.0.0",
packages=[
"libraries.utils",
"libraries.models",
],
install_requires=required,
url="https://github.com/bifrost-platform/asset-info-v2",
license="",
author="Backend Team of Bifrost",
author_email="contact@pi-lab.io",
description="Information about asset ver.2 ",
)
Loading