-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 1.25 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name = 'HaploDynamics',
packages=setuptools.find_packages(include=['HaploDynamics','HaploDynamics.HaploDX','HaploDynamics.Framework','HaploDynamics.utils']),
version = 'v0.4-beta.1',
license='gpl-3.0',
author = 'Remy Tuyeras',
author_email = '[email protected]',
description = 'A python library to develop genomic data simulators',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/remytuyeras/HaploDynamics',
download_url = 'https://github.com/remytuyeras/HaploDynamics/archive/refs/tags/v0.4-beta.1.tar.gz',
keywords = ['Simulator', 'Genomics', 'Genomic', 'Microarray','SNP chip','VCF', 'Linkage disequilibrium', 'Hardy-Weinberg equilibrium'],
install_requires=['scipy'],
classifiers=[
'Development Status :: 4 - Beta', #"3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)