-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (34 loc) · 1001 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
import setuptools
import versioneer
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='mushi',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author='William DeWitt',
author_email='wsdewitt@gmail.com',
description='🍄 [mu]tation [s]pectrum [h]istory [i]nference 🍄',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/harrispopgen/mushi',
# packages=setuptools.find_packages(exclude=['tests', 'docs']),
packages=['mushi'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.7.*',
scripts=['bin/mushi'],
install_requires=[
'jax',
'jaxlib',
'prox-tv-SDIST',
'seaborn',
'pandas',
'matplotlib',
'numpy',
'scipy'
],
)