-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (26 loc) · 822 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
from setuptools import setup
__version__ = "0.0.1"
# Read in the requirements.txt file
with open("requirements.txt") as f:
requirements = []
for library in f.read().splitlines():
requirements.append(library)
setup(
name="pyed",
version=__version__,
install_requires=requirements,
author="Marc Harper",
author_email="[email protected]",
packages=["pyed"],
license="The MIT License (MIT)",
description="Evolutionary Dynamics Trajectories",
long_description_content_type="text/x-rst",
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.5",
package_data={'pyed': ['bomze.txt']},
)