-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (21 loc) · 839 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name='shangyu_pypi', # How you named your package folder (MyLib)
version='0.0.3', # Start with a small number and increase it with every change you make
author='ShangYu Chiang', # Type in your name
author_email='[email protected]', # Type in your E-Mail
url='', # Provide either the link to your github or to your website
description=u'Test_Yu', # description - Give a short description about your library
packages=['shangyu_pypi'], # packages - Chose the same as "name"
install_requires=[],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'ShangYu=shangyu_pypi:ShangYu',
'test2019=shangyu_pypi:test2019',
'shelly=shangyu_pypi:shelly',
],
}
)