forked from BxNxM/micrOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 1.15 KB
/
setup.py
File metadata and controls
32 lines (28 loc) · 1.15 KB
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import setuptools
# https://towardsdatascience.com/create-your-custom-python-package-that-you-can-pip-install-from-your-git-repository-f90465867893
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name='micrOSDevToolKit',
version='2.6.0',
author='Marcell Ban',
author_email='miros.framework@gmail.com',
description='Development environment for micrOS (micropython based IoT solution)',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/BxNxM/micrOS',
project_urls={
"Bug Tracker": "https://github.com/BxNxM/micrOS/issues"
},
license='MIT',
packages=setuptools.find_packages(),
install_requires=['adafruit-ampy==1.1.0', 'esptool==4.1', 'ipaddress', 'mpy-cross==1.19.1', 'netaddr',
'pylint', 'PyQt5', 'pyserial', 'resources', 'flask', 'flask_restful', 'numpy',
'matplotlib', 'json2html'],
scripts=['devToolKit.py'],
include_package_data=True,
use_scm_version=True,
setup_requires=['setuptools_scm']
)