-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (24 loc) · 965 Bytes
/
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
from distutils.core import setup
from os.path import join, abspath, dirname
base_dir = abspath(dirname(__file__))
requirements_txt = join(base_dir, 'requirements.txt')
requirements = [l.strip() for l in open(requirements_txt) if l and not l.startswith('#')]
version = open(join(base_dir, 'eva_vcf_merge', 'VERSION')).read().strip()
setup(
name='eva_vcf_merge',
packages=['eva_vcf_merge'],
package_data={'eva_vcf_merge': ['VERSION']},
version=version,
license='Apache',
description='EBI EVA - VCF merge library',
url='https://github.com/EBIVariation/eva-vcf-merge',
keywords=['ebi', 'eva', 'python', 'vcf'],
install_requires=requirements,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3'
]
)