-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.2 KB
/
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
35
36
37
38
39
from setuptools import setup
setup(
name='rpi-radio-alarm',
version='0.3.5',
license='LGPLv3',
description='rpi-radio-alarm library',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='bb4L',
author_email='39266013+bb4L@users.noreply.github.com',
project_urls={"Source Code": "https://github.com/bb4L/rpi-radio-alarm-pip"},
packages=['rpiradioalarm'],
keywords=['Raspberry Pi', 'radio', 'alarm'],
install_requires=[
'aiohttp==3.7.4',
'async-timeout==3.0.1',
'attrs==19.3.0',
'chardet==3.0.4',
'discord==1.0.1',
'discord.py==1.2.4',
'idna==2.8',
'multidict==4.5.2',
'python-dotenv==0.10.3',
'websockets==9.1',
'yarl==1.3.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development',
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
include_package_data=True,
)
# python setup.py sdist && twine upload dist/*