generated from Ailln/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (32 loc) · 1000 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
from setuptools import setup
from setuptools import find_packages
NAME = "two"
AUTHOR = "Ailln"
EMAIL = "kinggreenhall@gmail.com"
URL = "https://github.com/Ailln/two"
LICENSE = "MIT License"
DESCRIPTION = "😏随机一句「中二」的台词!"
if __name__ == "__main__":
setup(
name=NAME,
version="0.1.3",
author=AUTHOR,
author_email=EMAIL,
url=URL,
license=LICENSE,
description=DESCRIPTION,
packages=find_packages(),
include_package_data=True,
install_requires=open("./requirements.txt", "r").read().splitlines(),
long_description=open("./README.md", "r").read(),
long_description_content_type='text/markdown',
package_data={
"two": ["src/*.txt"]
},
zip_safe=True,
classifiers=[
"Programming Language :: Python :: 3",
f"License :: OSI Approved :: {LICENSE}",
"Operating System :: OS Independent",
]
)