-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 873 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
from setuptools import setup
setup(
author='Alex',
author_email='madest92@mail.com',
name='tea-xyz2',
version='0.0.3',
description='A simple package for https://app.tea.xyz/. Example tea-xyz1 - https://github.com/madest92/tea-xyz1 and tea-xyz2 - https://github.com/madest92/tea-xyz2',
url='https://github.com/madest92/tea-xyz2',
project_urls={
'Homepage': 'https://github.com/madest92/tea-xyz2',
'Source': 'https://github.com/madest92/tea-xyz2',
},
py_modules=['hello_tea'],
entry_points={
'console_scripts': [
'hello-tea=hello_tea:hello_tea_func'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
install_requires=[
'requests>=2.20.0',
'tea-xyz1',
],
)