-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.13 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
from setuptools import setup, find_packages
import codecs
import os
with open("README.md", "r") as fh:
LONG_DESCRIPTION= fh.read()
VERSION = '0.1.6'
DESCRIPTION = 'Microcontroller and python interface'
# Setting up
setup(
name="pymewc",
version=VERSION,
author="Rithic C H",
author_email="[email protected]",
description=DESCRIPTION,
long_description = LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['pyserial', 'pyttsx3', 'setuptools', 'pyfirmata2', 'matplotlib', 'numpy'],
keywords=['python', 'IoT', 'microcontroller', 'Arduino', 'Text-to-speech'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)