Skip to content

Commit e057212

Browse files
committed
Add existing file
1 parent d94758c commit e057212

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ install:
1111
- pip install -r requirements.txt
1212

1313
script: python3 ML.py --cov=Protein-feature-extraction
14+
- coverage run ML.py
1415

1516
after_success:
1617
- codecov

setup.py

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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

Comments
 (0)