-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 947 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 947 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
from setuptools import setup
from setuptools import find_packages
install_requires = [
'python-neutronclient>=6.1.0',
'python-novaclient>=8.0.0',
'six',
'prettytable',
'termcolor'
]
test_requires = []
setup(
name='os-cleanup',
version='0.1',
description="Cleanup Routine for Openstack Project resources",
author="S.Suresh Kumar",
author_email="sureshkumarr.s@gmail.com",
url="https://github.com/sureshkvl/os-cleanup",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
scripts=[],
license="Apache",
entry_points={
},
classifiers=[
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: User Interfaces',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4'
]
)