|
@@ -7,9 +7,9 @@
|
|
|
from setuptools import setup
|
|
|
from setuptools import find_packages
|
|
|
|
|
|
-README_LOCATION = 'README.md'
|
|
|
-REQ_LOCATION = 'requirements.txt'
|
|
|
-REQ_PRO_LOCATION = 'requirements.pro.txt'
|
|
|
+README_LOCATION = "README.md"
|
|
|
+REQ_LOCATION = "requirements.txt"
|
|
|
+REQ_PRO_LOCATION = "requirements.pro.txt"
|
|
|
VERSION_FILE = "version.txt"
|
|
|
|
|
|
|
|
@@ -35,7 +35,7 @@ def get_version():
|
|
|
|
|
|
|
|
|
setup(
|
|
|
- name='super-gradients',
|
|
|
+ name="super-gradients",
|
|
|
version=get_version(),
|
|
|
description="SuperGradients",
|
|
|
author="Deci AI",
|
|
@@ -43,15 +43,15 @@ setup(
|
|
|
url="https://deci-ai.github.io/super-gradients/welcome.html",
|
|
|
keywords=["Deci", "AI", "Training", "Deep Learning", "Computer Vision", "PyTorch", "SOTA", "Recipes", "Pre Trained", "Models"],
|
|
|
install_requires=get_requirements(),
|
|
|
- packages=find_packages(where='./src'),
|
|
|
- package_dir={'': 'src'},
|
|
|
+ packages=find_packages(where="./src"),
|
|
|
+ package_dir={"": "src"},
|
|
|
package_data={
|
|
|
- 'super_gradients.recipes': ['*.yaml', '**/*.yaml'],
|
|
|
- 'super_gradients.common': ['auto_logging/auto_logging_conf.json'],
|
|
|
- 'super_gradients.examples': ['*.ipynb', '**/*.ipynb'],
|
|
|
- 'super_gradients': ['requirements.txt', 'requirements.pro.txt'],
|
|
|
+ "super_gradients.recipes": ["*.yaml", "**/*.yaml"],
|
|
|
+ "super_gradients.common": ["auto_logging/auto_logging_conf.json"],
|
|
|
+ "super_gradients.examples": ["*.ipynb", "**/*.ipynb"],
|
|
|
+ "super_gradients": ["requirements.txt", "requirements.pro.txt"],
|
|
|
},
|
|
|
long_description=readme(),
|
|
|
long_description_content_type="text/markdown",
|
|
|
- extras_require={"pro": get_pro_requirements()}
|
|
|
+ extras_require={"pro": get_pro_requirements()},
|
|
|
)
|