Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

#433 Feature/SG 143 black formatter

Merged
Ghost merged 1 commits into Deci-AI:master from deci-ai:feature/SG-143-black-formatter
@@ -7,9 +7,9 @@
 from setuptools import setup
 from setuptools import setup
 from setuptools import find_packages
 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"
 VERSION_FILE = "version.txt"
 
 
 
 
@@ -35,7 +35,7 @@ def get_version():
 
 
 
 
 setup(
 setup(
-    name='super-gradients',
+    name="super-gradients",
     version=get_version(),
     version=get_version(),
     description="SuperGradients",
     description="SuperGradients",
     author="Deci AI",
     author="Deci AI",
@@ -43,15 +43,15 @@ setup(
     url="https://deci-ai.github.io/super-gradients/welcome.html",
     url="https://deci-ai.github.io/super-gradients/welcome.html",
     keywords=["Deci", "AI", "Training", "Deep Learning", "Computer Vision", "PyTorch", "SOTA", "Recipes", "Pre Trained", "Models"],
     keywords=["Deci", "AI", "Training", "Deep Learning", "Computer Vision", "PyTorch", "SOTA", "Recipes", "Pre Trained", "Models"],
     install_requires=get_requirements(),
     install_requires=get_requirements(),
-    packages=find_packages(where='./src'),
-    package_dir={'': 'src'},
+    packages=find_packages(where="./src"),
+    package_dir={"": "src"},
     package_data={
     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=readme(),
     long_description_content_type="text/markdown",
     long_description_content_type="text/markdown",
-    extras_require={"pro": get_pro_requirements()}
+    extras_require={"pro": get_pro_requirements()},
 )
 )
Discard
Tip!

Press p or to see the previous file or, n or to see the next file