diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 08e9b08..d0134c2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -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? diff --git a/libraries/models/enum_type.py b/libraries/models/enum_type.py deleted file mode 100644 index e69de29..0000000 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0748326 --- /dev/null +++ b/setup.py @@ -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 ", +)