|
| 1 | +try: |
| 2 | + from setuptools import setup |
| 3 | +except ImportError: |
| 4 | + from distutils.core import setup |
| 5 | + |
| 6 | +import versioneer |
| 7 | + |
| 8 | +README_MD = '' |
| 9 | +with open('README.md') as f: |
| 10 | + README_RST = f.read() |
| 11 | + |
| 12 | +INSTALL_REQUIRES = [ |
| 13 | + 'pandas', 'biopython' |
| 14 | +] |
| 15 | +# TEST_REQUIRES = [ |
| 16 | +# # testing and coverage |
| 17 | +# 'pytest', 'coverage', 'pytest-cov', |
| 18 | +# # non-testing packagesrequired by tests, not by the package |
| 19 | +# 'scikit-learn', 'pdutil', |
| 20 | +# # to be able to run `python setup.py checkdocs` |
| 21 | +# 'collective.checkdocs', 'pygments', |
| 22 | +# ] |
| 23 | + |
| 24 | +setup( |
| 25 | + name='#############################', |
| 26 | + description="Protein Feature Extraction package for Machine Learning", |
| 27 | + long_description=README_MD, |
| 28 | + author="Jithin Mathew", |
| 29 | + author_email="jithinjm1995@gmail.com", |
| 30 | + version=versioneer.get_version(), |
| 31 | + cmdclass=versioneer.get_cmdclass(), |
| 32 | + url='https://github.com/jithin8mathew/Protein-feature-extraction', |
| 33 | + license="MIT", |
| 34 | + packages=['#############################'], |
| 35 | + install_requires=INSTALL_REQUIRES, |
| 36 | + # extras_require={ |
| 37 | + # 'sklearn': ['scikit-learn', 'skutil'], |
| 38 | + # 'nltk': ['nltk'], |
| 39 | + # 'test': TEST_REQUIRES |
| 40 | + # }, |
| 41 | + setup_requires=INSTALL_REQUIRES, |
| 42 | + platforms=['any'], |
| 43 | + keywords='feature extraction protein sequence bioinformatics machine learning deep learning', |
| 44 | + classifiers=[ |
| 45 | + # 'Development Status :: 4 - Beta', |
| 46 | + 'License :: OSI Approved :: MIT License', |
| 47 | + 'Programming Language :: Python', |
| 48 | + 'Programming Language :: Python :: 3.5', |
| 49 | + 'Programming Language :: Python :: 3.6', |
| 50 | + 'Programming Language :: Python :: 3.7', |
| 51 | + 'Topic :: Software Development :: Libraries', |
| 52 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 53 | + 'Intended Audience :: Developers', |
| 54 | + ], |
| 55 | +) |
0 commit comments