-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (30 loc) · 1018 Bytes
/
setup.py
File metadata and controls
40 lines (30 loc) · 1018 Bytes
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
from distutils.core import setup
import os.path
import sys
setup(
name = 'xp',
version = '1.1',
packages = ['xp','xp.tests','xp.tests.pipelines','xp.kernels'],
package_data = {'xp.tests.pipelines' : ['*'] },
scripts = ['scripts/xp'],
# # dependencies
# # testing suite
#test_suite = 'xp.test',
# # project metadata
author = 'Derek Ruths',
author_email = 'druths@networkdynamics.org',
description = 'xp is a framework for building and executing computing pipelines',
license = 'Apache',
url = 'https://github.com/druths/xp',
keywords = ['data science','research','build','automation'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7']
)