-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·45 lines (40 loc) · 1.61 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
40
41
42
43
44
45
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
from Eduponics import __version__
sys.path.pop(0)
# read the contents of your README file
with open(('README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='micropython-eduponics',
packages=find_packages(),
include_package_data=True,
version=__version__,
download_url = 'https://github.com/STEMinds/micropython-eduponics/archive/2.0.2.tar.gz',
keywords = ["STEMinds",'MicroPython','uPython', 'Eduponics-Mini', 'Eduponics', 'ESP32', 'ADS1x15', 'MCP23017', 'TDS', 'pH', 'bh1750', 'BME280', 'DS1307', 'AT24C02'],
description='STEMinds Eduponics Mini MicroPython library',
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Topic :: Software Development',
"Programming Language :: Python :: Implementation :: MicroPython",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
author='STEMinds',
author_email='contact@steminds.com',
url='https://github.com/STEMinds/micropython-eduponics',
install_requires=[''],
)