-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (39 loc) · 1.82 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
options = {
'name' : 'clydepm',
'description' : 'Clyde C/C++ Package Manager',
'long_description' : readme(),
'url' : 'https://git.crl.vecna.com/#/admin/projects/firmware/tools/python/clydepm',
'author' : 'Isaac Gutekunst',
'author_email' : '[email protected]',
'license' : 'Property of Vecna Technologies, Inc.',
'packages' : find_packages(),
'install_requires' : ['gitpython',
'pyyaml',
'colorama',
'termcolor',
'configparser',
'unidecode',
'graphviz',
'pygerrit',
'pygments',
'semantic_version',
'Jinja2',
'ninja'
],
'zip_safe' : True,
'package_data' : {'clydepm': ['templates/*.*'] },
'version' : '0.2.46',
'test_suite' : 'nose.collector',
'tests_require' : ['nose'],
'entry_points' : {
'console_scripts' : [
'clyde=clydepm.command_line:main',
'clyde2=clyde2.command_line:main'
]
}
}
setup(**options)