-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 770 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 770 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
README = readme_file.read()
setup_args = dict(
name='raspauto',
version='0.3.1',
description='Raspberry Automation Library and Voice Recognition',
long_description_content_type="text/markdown",
long_description=README,
license='GNU',
packages=find_packages(),
author='Alpaslan Tetik',
author_email='232arslan104@gmail.com',
keywords=['raspberry', 'automotion','control'],
url='https://github.com/aattk/raspauto',
download_url='https://pypi.org/project/raspauto/',
python_requires='>=3.6',
)
install_requires = [
'python-telegram-bot'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)