forked from prestapyt/prestapyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (41 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
"""
Prestapyt
:copyright: (c) 2011-2013 Guewen Baconnier
:copyright: (c) 2011 Camptocamp SA
:license: AGPLv3, see LICENSE for more details
"""
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# Basic package information.
name = 'prestapyt',
use_scm_version=True,
# Packaging options.
include_package_data = True,
# Package dependencies.
install_requires = ['requests', 'future', 'importlib-metadata; python_version < "3.8"', 'aiohttp'],
setup_requires=[
'setuptools_scm',
],
# Metadata for PyPI.
author = 'Guewen Baconnier',
author_email = '[email protected]',
license = 'GNU AGPL-3',
url = 'http://github.com/prestapyt/prestapyt',
packages=['prestapyt'],
keywords = 'prestashop api client rest',
description = 'A library to access Prestashop Web Service from Python.',
long_description_content_type='text/markdown',
long_description = read('README.md'),
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'
]
)