-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (22 loc) · 951 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
from setuptools import setup
with open('README.md') as description:
description = description.read()
#execfile('estimation/version.py') # Acquire version constants.
# Define some package entry points. These will be command-line scripts that get
# installed into the user's PATH
install_requires = ['pycausal']
dependency_links=[]
setup(
name='Undersampled_Graph_Estimation',
description='Tools to explore dynamic causal graphs in the case of undersampled data',
version='0.0.1',
author='John Cook',
author_email='[email protected]',
long_description=description,
include_package_data=True, # Include files listed in MANIFEST.in
packages=['dbnestimation'], # Sub-packages must be explicitly listed.
#entry_points=epoints,
install_requires=install_requires, # List of dependencies.
dependency_links=dependency_links,
zip_safe=False
) # Override annoying default behavior of easy_install.