-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (39 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="pylemon8",
packages=setuptools.find_packages(),
version="0.1.1",
license='MIT',
author="Saw Jing Wen",
author_email="shotnothinggg@gmail.com",
description="Lemon8 Wrapper in Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/shotnothing/pylemon8",
download_url='https://github.com/shotnothing/pylemon8',
keywords=[
'python',
'lemon8',
'pylemon8',
'bytedance',
'api',
'lemon',
'8',
'wrapper',
'py-lemon8',
'pythonlemon8',
'eight'],
install_requires=[
'requests',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
include_package_data=True
)