Spaces:
Sleeping
Sleeping
File size: 1,105 Bytes
0dab632 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
from setuptools import setup, find_packages
setup(
name='path_analysis',
version='0.1.0',
description='A brief description of your package',
author='Your Name',
author_email='[email protected]',
url='https://github.com/yourusername/yourrepository', # if you have a repo for the project
packages=find_packages(), # or specify manually: ['your_package', 'your_package.submodule', ...]
install_requires=[
'numpy', # for example, if your package needs numpy
'gradio',
# ... other dependencies
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
# ... other classifiers
],
python_requires='>=3.6', # your project's Python version requirement
keywords='some keywords related to your project',
# ... other parameters
)
|