-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (26 loc) · 918 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
import setuptools
requires = [
row.replace("\n", "").replace("\r\n", "")
for row in open("requirements-dev.txt")
]
setuptools.setup(
name="plastic-origins",
version="0.0.7",
author="Plastic Origins",
author_email="[email protected]",
description="A package containing methods commonly used to make inferences",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/Chayma-mesbahi/surfnet.git",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requires,
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*model.xlsx", "../requirements-dev.txt", "../README.md"],
},
)