-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathsetup.py
45 lines (40 loc) · 1.27 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
from codecs import open as codecs_open
from setuptools import setup, find_packages
from warnings import warn
import os
# Get the long description from the relevant file
with codecs_open('README.md', encoding='utf-8') as f:
long_description = f.read()
# After exec'ing this file we have tskit_version defined.
tskit_version = None # Keep PEP8 happy.
version_file = os.path.join("pyslim", "_version.py")
with open(version_file) as f:
exec(f.read())
setup(name='pyslim',
version=pyslim_version,
description=u"Manipulate tree sequences produced by SLiM.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[],
keywords=['tree sequences', 'tskit'],
author=u"Peter Ralph",
author_email='[email protected]',
url='https://github.com/tskit-dev/pyslim',
license='MIT',
packages=['pyslim'],
include_package_data=True,
zip_safe=False,
install_requires=[
'msprime>=1.0.1',
'tskit',
'numpy'
],
extras_require={
'dev': [],
},
setup_requires=[],
project_urls={
'Bug Reports': 'https://github.com/tskit-dev/pyslim/issues',
'Source': 'https://github.com/tskit-dev/pyslim',
},
)