-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 803 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
"""
Yuanzhen Zhou 's Python Toolkit
"""
from setuptools import setup, find_packages
LONG_DESC = """
Python Toolkit of Yuanzhen Zhou.
"""
setup(
name='zyz',
version='0.2.0',
license='Apache License 2.0',
keywords='zyz, zyztk, zhouyuanzhen',
maintainer='Yuanzhen Zhou',
maintainer_email='[email protected]',
packages=find_packages(include=['zyz', 'zyz.*']),
zip_safe=False,
include_package_data=True,
url='https://github.com/zhouyuanzhen/zyztk',
author='Yuanzhen Zhou',
author_email='[email protected]',
description='Python Toolkit of Yuanzhen Zhou',
long_description=LONG_DESC,
python_requires='>=3.5, <4',
install_requires=[],
extras_require={
'test': [
'pytest',
'coverage',
],
},
)