-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathsetup.py
34 lines (26 loc) · 817 Bytes
/
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
try:
import multiprocessing
except ImportError:
pass
from setuptools import setup
setup(
name='aliexpress-api-client',
version='1.2',
description='AliExpress API Client',
url='https://github.com/kronas/python-aliexpress-api-client',
author='Kronas',
author_email='[email protected]',
license='MIT',
packages=['aliexpress_api_client'],
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)