-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 808 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from setuptools import setup
setup(name='selectel-api',
version='0.1.4',
description='Simple selectel API',
author='Kirill Goldshtein',
author_email='goldshtein.kirill@gmail.com',
url='https://github.com/go1dshtein/selectel-api',
packages=['selectel'],
install_requires=['requests >= 1.2.1'],
license='MIT',
classifiers=['Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
])