-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
27 lines (25 loc) · 921 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
from setuptools import setup
VERSION = '0.0.6'
setup(
name="darth",
version=VERSION,
author='Jon Wayne Parrott, [proppy], Michael R. Bernstein',
author_email='[email protected], [proppy], [email protected]',
maintainer='Jon Wayne Parrott',
maintainer_email='[email protected]',
description='Third-party vendoring helper for Google App Engine and other sandboxed python environments.',
url='https://github.com/jonparrott/Darth-Vendor',
license='Apache License 2.0',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
py_modules=['darth', 'darth_bootstrap'],
entry_points={
'console_scripts': ['darth-bootstrap=darth_bootstrap:bootstrap']
},
test_suite='nose.collector',
install_requires=[
],
)