-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1020 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
28
29
30
31
32
33
34
35
36
37
38
39
import os
import sys
import subprocess
from setuptools import setup
requirements=[
'attrs>=23.2.0',
'demes>=0.2.3',
'jsonschema>=4.22.0',
'jsonschema-specifications>=2023.12.1',
'msprime>=1.3.1',
'newick>=1.9.0',
'numpy>=1.26.4',
'PyYAML>=6.0.1',
'referencing>=0.35.1',
'rpds-py>=0.18.1',
'ruamel.yaml>=0.18.6',
'ruamel.yaml.clib>=0.2.8',
'svgwrite>=1.4.3',
'tskit>=0.5.6'
]
setup(
name='adnator',
install_requires=requirements,
version='1.2',
author='Jazeps Medina Tretmanis',
author_email='[email protected]',
description='A realistic-ish aDNA simulator',
url='https://github.com/Jazpy/adnator',
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"],
packages=['adnator'],
package_dir={'adnator': 'src/adnator'},
package_data={'adnator': ['*.cpp', '*makefile']},
include_package_data=True,
)