Skip to content

Commit

Permalink
[ASSET-11] Add setup.py (#12)
Browse files Browse the repository at this point in the history
* ASSET-11 Remove unnecessary file

Signed-off-by: jormal <jormal@naver.com>

* ASSET-11 Add setup.py to make repo package

Signed-off-by: jormal <jormal@naver.com>

* ASSET-11 Update PR template

Signed-off-by: jormal <jormal@naver.com>

---------

Signed-off-by: jormal <jormal@naver.com>
  • Loading branch information
jormal authored Jan 19, 2024
1 parent a86d52f commit 329e123
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
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 ",
)

0 comments on commit 329e123

Please sign in to comment.