forked from madest92/teaxyz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 874 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
from setuptools import setup
setup(
author='User',
author_email='[email protected]',
name='teaxyz',
version='0.0.1',
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/teaxyz',
project_urls={
'Homepage': 'https://github.com/madest92/teaxyz',
'Source': 'https://github.com/madest92/teaxyz',
},
py_modules=['hi_tea'],
entry_points={
'console_scripts': [
'hi-tea=hi_tea:hello_tea_xyz'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
python_requires='>=3.6',
install_requires=[
'tea-xyz1',
'tea-xyz2',
# add your projects
],
)