-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.13 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
#!/usr/bin/env python
from setuptools import setup, find_packages
def install():
desc = 'A Python client library for rutube!'
setup(
name='dealabs-api',
version='0.1',
description=desc,
long_description=desc,
author='IDerr',
author_email='',
url='https://github.com/IDerr/dealabs-api',
classifiers=['Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only'
],
packages=find_packages(),
install_requires=[
'requests',
'requests_oauthlib'
],
)
if __name__ == "__main__":
install()