-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (45 loc) · 1.19 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
49
50
# Standard Libraries
from setuptools import setup, find_namespace_packages
import pathlib
APP_NAME = "ecoevocrm"
VERSION = "1.0.1"
LICENSE = "MIT"
AUTHOR = "Ryan Seamus McGee"
DESCRIPTION = "Computational frameworks for extended consumer resource models of eco-evoutionary community dynamics."
URL = "https://github.com/tikhonov-group/ecoevocrm.git"
# Directory containing this file
HERE = pathlib.Path(__file__).parent
# Text of README file
README = (HERE / "README.md").read_text()
setup(
name=APP_NAME,
version=VERSION,
license=LICENSE,
author=AUTHOR,
description=DESCRIPTION,
long_description=README,
long_description_content_type="text/markdown",
url=URL,
install_requires=[
"numpy",
"scipy",
"scikit-learn",
"pandas",
"matplotlib",
"argparse"
],
extra_require={
},
packages=find_namespace_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.yaml", "*.json"]},
entry_points="""
[console_scripts]
""",
python_requires=">=2.6",
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
],
include_package_data=True
)