-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (32 loc) · 1.19 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
from setuptools import setup, find_packages
VERSION = '2.1'
DESCRIPTION = 'remoteio - Remote GPIO control'
# Read the contents of README file
with open('README.md') as f:
long_description = f.read()
setup(
name="remoteio",
version=VERSION,
author="Christoph Scherbeck",
author_email="christoph@scherbeck.tech",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
packages=find_packages(),
install_requires=["gpiozero"],
keywords=['python', 'remoteio'],
classifiers= [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: POSIX :: Linux",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware",
],
project_urls={
'Homepage': 'https://github.com/schech1/remoteio'
}
)