-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (35 loc) · 1.37 KB
/
setup.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
from codecs import open
all_requirements = []
with open('requirements.txt', encoding='utf-8') as f:
all_requirements = f.read().splitlines()
setup(
name='pyprot',
version='0.1-alpha',
description='Python Proteins',
long_description="A package designed to represent and maniupate amino acid sequences.",
url='https://github.com/StanIsAdmin/PyProt',
download_url='https://github.com/StanIsAdmin/PyProt/archive/0.1-alpha.tar.gz',
author='Stanislas Gueniffey',
author_email='[email protected]',
license='GPL-3.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
keywords='biology proteins sequence-alignment',
packages=find_packages(exclude=[]),
install_requires=all_requirements,
extras_require={
'test': ['nose']
},
)