|
| 1 | +#!/usr/bin/env python3 |
| 2 | + |
| 3 | +"""The setup script.""" |
| 4 | + |
| 5 | +from setuptools import find_packages, setup |
| 6 | + |
| 7 | +with open('requirements.txt') as f: |
| 8 | + requirements = f.read().strip().split('\n') |
| 9 | + |
| 10 | +with open('README.md') as f: |
| 11 | + long_description = f.read() |
| 12 | +setup( |
| 13 | + maintainer='Project Pythia Team', |
| 14 | + maintainer_email='', |
| 15 | + python_requires='>=3.7', |
| 16 | + classifiers=[ |
| 17 | + 'Development Status :: 2 - Pre-Alpha', |
| 18 | + 'License :: OSI Approved :: Apache Software License', |
| 19 | + 'Natural Language :: English', |
| 20 | + 'Programming Language :: Python :: 3', |
| 21 | + 'Programming Language :: Python :: 3.7', |
| 22 | + 'Programming Language :: Python :: 3.8', |
| 23 | + 'Programming Language :: Python :: 3.9', |
| 24 | + 'Topic :: Scientific/Engineering', |
| 25 | + 'Operating System :: OS Independent', |
| 26 | + 'Intended Audience :: Science/Research', |
| 27 | + ], |
| 28 | + description='Provides utility functions for accessing data repository for Project Pythia examples/notebooks', |
| 29 | + install_requires=requirements, |
| 30 | + license='Apache Software License 2.0', |
| 31 | + long_description_content_type='text/markdown', |
| 32 | + long_description=long_description, |
| 33 | + include_package_data=True, |
| 34 | + keywords='Pythia, Pooch', |
| 35 | + name='pythia-datasets', |
| 36 | + packages=find_packages(include=['pythia_datasets', 'pythia_datasets.*']), |
| 37 | + entry_points={}, |
| 38 | + url='https://github.com/ProjectPythia/pythia-datasets', |
| 39 | + project_urls={ |
| 40 | + 'Documentation': 'https://github.com/ProjectPythia/pythia-datasets', |
| 41 | + 'Source': 'https://github.com/ProjectPythia/pythia-datasets', |
| 42 | + 'Tracker': 'https://github.com/ProjectPythia/pythia-datasets/issues', |
| 43 | + }, |
| 44 | + use_scm_version={ |
| 45 | + 'version_scheme': 'post-release', |
| 46 | + 'local_scheme': 'dirty-tag', |
| 47 | + }, |
| 48 | + setup_requires=['setuptools_scm', 'setuptools>=30.3.0'], |
| 49 | + zip_safe=False, |
| 50 | +) |
0 commit comments