forked from prestapyt/prestapyt
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (33 loc) · 1.07 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
#!/usr/bin/env python
import os
from setuptools import setup
__author__ = 'Guewen Baconnier <[email protected]>'
__version__ = '0.4.0'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# Basic package information.
name = 'prestapyt',
version = __version__,
# Packaging options.
include_package_data = True,
# Package dependencies.
install_requires = ['httplib2', 'requests'],
# Metadata for PyPI.
author = 'Guewen Baconnier',
author_email = '[email protected]',
license = 'GNU AGPL-3',
url = 'http://github.com/guewen/prestapyt',
packages=['prestapyt'],
keywords = 'prestashop api client rest',
description = 'A library to access Prestashop Web Service from Python.',
long_description = read('README'),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Internet'
]
)