-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (46 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
# Authors: Federico Raimondo <[email protected]>
# Sami Hamdan <[email protected]>
# License: AGPL
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
DOWNLOAD_URL = 'https://github.com/juaml/hipsnp/'
URL = 'http://juaml.github.io/hipsnp/'
setuptools.setup(
name='hipsnp',
author='Kaustubh Patil',
author_email='[email protected]',
description='FZJ AML hipsnp library',
long_description=long_description,
long_description_content_type='text/markdown',
url=URL,
download_url=DOWNLOAD_URL,
packages=setuptools.find_packages(),
zip_safe=False,
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3'],
project_urls={
'Documentation': URL,
'Source': DOWNLOAD_URL,
'Tracker': f'{DOWNLOAD_URL}issues/',
},
install_requires=['datalad>=0.14.0', 'pandas>=1.1.2',
'numpy>=1.16', 'bgen_reader>=4.0.8'],
python_requires='>=3.6',
use_scm_version=dict(
version_scheme="python-simplified-semver",
local_scheme="node-and-date",
write_to="hipsnp/_version.py",
write_to_template="__version__ = '{version}'\n"
),
setup_requires=['setuptools_scm'],
)