forked from nepstad/epytox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.1 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
from setuptools import setup
REQUIRES = [
'numpy',
'scipy',
'emcee',
'corner',
'lmfit',
'seaborn',
'pandas',
'tqdm',
'clint'
]
readme = open('README.md').read()
setup(
name='epytox',
version='0.1.0',
description='A python toolkit for environmental toxicology model model fitting and simulations.',
author='Raymond Nepstad',
author_email='[email protected]',
url='https://github.com/nepstad/epytox',
packages=[
'epytox',
],
package_dir={'epytox': 'epytox'},
include_package_data=True,
install_requires=[
],
license=open('LICENSE').read(),
zip_safe=False,
keywords='epytox',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)