-
Notifications
You must be signed in to change notification settings - Fork 83
/
setup.py
45 lines (38 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
41
42
43
44
45
import codecs
import os
import sys
try:
from setuptools import setup,find_packages
except:
from distutils.core import setup,find_packages
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
NAME = "pyshopee"
PACKAGES = ['hmac','hashlib','requests','urllib']
DESCRIPTION = "python implementation for Shopee Partners API."
KEYWORDS = "pyshopee,Shopee,Shopee Partners API,python-shopee"
AUTHOR = "jimcurrywang"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/JimCurryWang/pyshopee"
VERSION = "1.4.0"
LICENSE = "MIT"
setup(
name = NAME,
version = VERSION,
description = DESCRIPTION,
# long_description = LONG_DESCRIPTION,
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
keywords = KEYWORDS,
author = AUTHOR,
author_email = AUTHOR_EMAIL,
url = URL,
license = LICENSE,
packages = find_packages(),
include_package_data=True,
zip_safe=True,
)