-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (40 loc) · 1.14 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
from setuptools import setup
setup(
name='ostoken',
version='0.1.0.a1',
description='console utility to work with OpenStack tokens',
license='MIT',
author='Andrey Ulagashev',
author_email='[email protected]',
url='https://github.com/HDScorpio/ostoken',
packages=[
'ostoken',
'ostoken.commands',
],
install_requires=[
'click',
'requests',
'setproctitle',
'psutil',
'python-daemon'
],
entry_points={
'console_scripts': [
'ostoken = ostoken.main:cli'
]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP'
],
)