-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 896 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
from distutils.core import setup
setup(
name='linelib',
version='2',
packages=['linelib', 'linelib.notify', 'linelib.ext', 'linelib.connect', 'linelib.model'],
license='MIT',
description="The solution to simplicity.",
long_description=open('README.md', 'r').read(),
long_description_content_type="text/markdown",
author='AWeirdScratcher',
author_email = "[email protected]",
install_requires=[
'httpx', 'urllib3', 'flask', 'flask-cors', 'termcolor'
],
keywords = ['line', 'bot', 'line bot', 'sdk'],
url="https://github.com/AWeirdScratcher/linelib",
classifiers=[
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3.10'
]
)