-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (44 loc) · 1.48 KB
/
setup.py
File metadata and controls
executable file
·45 lines (44 loc) · 1.48 KB
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
#!/usr/bin/env python3
# vim:set ff=unix expandtab ts=4 sw=4:
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name="ComputabilityGraphs",
version="0.9",
#test_suite="example_package.tests", # http://pythonhosted.org/setuptools/setuptools.html#test
description="Deternmines computability of instances of a type based on a set of type annotated functions",
long_description=readme(), # avoid duplication
author="Markus Müller",
author_email="markus.mueller.1.g@gmail.com",
#url="https://github.com/MPIBGC-TEE/ComputabilityGraphs",
packages=find_packages('src'), # find all packages (multifile modules) recursively
package_dir={'': 'src'},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
#"Operating System :: POSIX :: Linux",
"Topic :: Education ",
],
# entry_points={
#'console_scripts': [
# 'render= bgc_md.reports:render_parse'
# ]
# },
install_requires=[
"frozendict",
"testinfrastructure",
"networkx",
"matplotlib",
"bokeh",
"igraph",
"ipywidgets",
"scipy",
],
include_package_data=True,
zip_safe=False
)