-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (44 loc) · 1.7 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
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
from prointvar import __version__
def gather_dependencies():
with open('requirements.txt', 'r') as f_in:
return [l for l in f_in.read().rsplit(os.linesep)
if l and not l.startswith("#")]
DEPENDENCIES = gather_dependencies()
setup(
name="ProIntVar",
version=__version__,
packages=find_packages(exclude=["tests", 'tests.*']),
# should always match the entries in requirements.txt
install_requires=DEPENDENCIES,
package_data={'prointvar': ['config_template.ini']},
include_package_data=True,
entry_points={
"console_scripts": [
"ProIntVar-config-setup=prointvar.config:config_setup",
"ProIntVar-config-load=prointvar.config:config_load",
"ProIntVar=cli.main:cli",
]
},
author="Fábio Madeira",
author_email="fabiomadeira@me.com",
url="https://github.com/bartongroup/ProIntVar",
download_url="https://github.com/bartongroup/ProIntVar/archive/master.zip",
license='MIT',
keywords='python pdb structures pandas dssp sifts ensembl uniprot alignments',
description=('Python module that implements methods for working with Protein Structures '
'and Genetic Variation'),
long_description=open('README.md').read(),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License"
]
)