-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (30 loc) · 1022 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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
from os import path
import io
here = path.abspath(path.dirname(__file__))
NAME = 'pynextion'
with io.open(path.join(here, NAME, 'version.py'), 'rt', encoding='UTF-8') as f:
exec(f.read())
with io.open(path.join(here, 'README.md'), 'rt', encoding='UTF-8') as f:
long_description = f.read()
setup(
name=NAME,
version="0.0.1",
author="py3-nextion",
author_email="s.celles@gmail.com",
description="Python library for Nextion intelligent display",
long_description=long_description,
long_description_content_type='text/markdown',
license=__license__,
keywords="nextion display screen library",
url=__url__,
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache 2.0 License",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
install_requires=['pyserial'],
)