forked from osrf/osrf_pycommon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 842 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
29
30
from setuptools import setup
from setuptools import find_packages
install_requires = [
'setuptools',
'trollius',
]
setup(
name='osrf_pycommon',
version='0.0.0',
packages=find_packages(exclude=['tests', 'docs']),
install_requires=install_requires,
author='William Woodall',
author_email='[email protected]',
maintainer='William Woodall',
maintainer_email='[email protected]',
url='http://osrf-pycommon.readthedocs.org/',
keywords=['osrf', 'utilities'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache 2.0',
'Programming Language :: Python',
],
description="Commonly needed Python modules, "
"used by Python software developed at OSRF",
license='Apache 2.0',
test_suite='tests',
)