CoolFace
Apppublic

JFoz/test_path_analysis

sourceHugging Facebsd-3-clauseupdated 3y agoView on Hugging Face
0likes
setup.py30 linesDownload Raw Back to root
1from setuptools import setup, find_packages2 3setup(4    name='path_analysis',5    version='0.1.0',6    description='A brief description of your package',7    author='Your Name',8    author_email='youremail@example.com',9    url='https://github.com/yourusername/yourrepository',  # if you have a repo for the project10    packages=find_packages(),  # or specify manually: ['your_package', 'your_package.submodule', ...]11    install_requires=[12        'numpy',  # for example, if your package needs numpy13        'gradio',14        # ... other dependencies15    ],16    classifiers=[17        'Development Status :: 3 - Alpha',  18        'Intended Audience :: Developers',19        'Programming Language :: Python :: 3',20        'Programming Language :: Python :: 3.6',21        'Programming Language :: Python :: 3.7',22        'Programming Language :: Python :: 3.8',23        'Programming Language :: Python :: 3.9',24        # ... other classifiers25    ],26    python_requires='>=3.6',  # your project's Python version requirement27    keywords='some keywords related to your project',28    # ... other parameters29)30