-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.11 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.11 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
import glob
import setuptools
import dynamo_consistency
with open('README.rst', 'r') as fh:
long_description = ''.join([
line for line in fh if
':ref:' not in line
])
setuptools.setup(
name='dynamo-consistency',
version=dynamo_consistency.__version__,
packages=setuptools.find_packages(),
author='Daniel Abercrombie',
author_email='dabercro@mit.edu',
description='Consistency plugin for Dynamo Dynamic Data Management System',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/SmartDataProjects/dynamo-consistency',
install_requires=['pyyaml',
'docutils',
'MySQL-python',
'psutil',
'cmstoolbox>=0.14.4'],
scripts=[s for s in glob.iglob('bin/*') if not s.endswith('~')],
python_requires='>=2.6, <3',
package_data={ # Test data for document building
'dynamo_consistency': ['consistency_config.json',
'report_schema.sql',
'web/*']
}
)