-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
47 lines (38 loc) · 1.51 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'VERSION')) as f:
__version__ = f.read().strip()
with open(os.path.join(here, 'requirements.txt')) as f:
required = f.read().splitlines()
with open(os.path.join(here, 'README.rst')) as f:
long_description = f.read()
extra_files = [os.path.join(here, 'requirements.txt'),
os.path.join(here, 'README.rst'),
os.path.join(here, 'VERSION'),
]
AuthorInfo = (
("Atzeni Rossano", "[email protected]"),
)
setup(name = "vcfminerclient",
version=__version__,
description = "client package for VCFMiner",
long_description=long_description,
author=",".join(a[0] for a in AuthorInfo),
author_email=",".join("<%s>" % a[1] for a in AuthorInfo),
zip_safe=True,
url='https://github.com/ratzeni/vcf-miner.client',
packages=find_packages(exclude=('tests',)),
keywords='utilities',
install_requires=required,
package_data={'': extra_files},
license='MIT',
platforms="Posix; MacOS X; Windows",
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Internet",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5"],
)