-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 941 Bytes
/
setup.py
File metadata and controls
36 lines (32 loc) · 941 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
36
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
'''
tpl API
:license: MIT, see LICENSE for more details
'''
from setuptools import setup
setup(
name='tpl',
version="0.0.1",
url='https://github.com/dvdhinesh/python-tpl/',
license='MIT',
author='Dhinesh D',
author_email='dvdhinesh.mail@gmail.com',
description='3PL REST API Client',
long_description=open('README.rst').read(),
packages=['tpl'],
platforms='any',
install_requires=[
'requests',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)