-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·35 lines (32 loc) · 1.02 KB
/
setup.py
File metadata and controls
executable file
·35 lines (32 loc) · 1.02 KB
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
31
32
33
34
35
#!/usr/bin/env python3
from setuptools import setup
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='camaptools',
version='0.1.0',
author='Albert Feghaly',
author_email='albert.feghaly@gmail.com',
url='https://epitopes.world',
description='Codon Arrangement MAP Predictor (CAMAP) Tools',
long_description=long_description,
license='MIT',
package_dir={'camaptools': 'camaptools'},
packages=['camaptools'],
install_requires=[
'numpy==1.18.1',
'scikit-learn==0.22.1',
'parse==1.6.6'
],
python_requires='>=3.5',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
],
)