-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
67 lines (61 loc) · 1.92 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.rst")) as readme_file:
readme = readme_file.read()
with open(path.join(here, "requirements.txt")) as requirements_file:
# Parse requirements.txt, ignoring any commented-out lines.
requirements = [
line
for line in requirements_file.read().splitlines()
if not line.startswith("#")
]
EXTRAS_REQUIRE = {
"tests": ["black", "flake8", "invoke", "pytest", "pytest-cov"],
"docs": [
"invoke",
"matplotlib",
"numpydoc",
"sphinx",
"sphinx-gallery",
"sphinx_rtd_theme",
"sphinx-copybutton",
],
}
setup(
name="dagging",
version="0.2.dev",
description="Python package implementing the dagging method",
long_description=readme,
author="Christos Aridas",
author_email="[email protected]",
url="https://github.com/chkoar/dagging",
packages=find_packages(exclude=["docs", "tests"]),
zip_safe=False, # the package can run out of an .egg file
entry_points={
"console_scripts": [
# 'some.module:some_function',
]
},
include_package_data=True,
package_data={
"dagging": [
# When adding files here, remember to update MANIFEST.in as well,
# or else they will not be included in the distribution on PyPI!
# 'path/to/data_file',
]
},
install_requires=requirements,
extras_require=EXTRAS_REQUIRE,
license="BSD (3-clause)",
classifiers=[
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
)