-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.09 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
from setuptools import setup
#install requirements provided by requirements.txt
install_requirements = open("requirements.txt").read().split('\n')
#readme from repo
readme_contents = open("README.md").read()
jno_version = "0.5.0"
#input into setup
setup(
name="jno",
version=jno_version,
description="Command line interface wrapper for Arduino IDE, inspired by ino",
long_description=readme_contents,
long_description_content_type="text/markdown",
url = "https://github.com/kosinkadink/jno",
author="Jedrzej Kosinski",
author_email="[email protected]",
license="MIT",
keywords="arduino interface ide wrapper",
packages=["jno","jno.commands"],
include_package_data=True,
install_requires=install_requirements,
entry_points = {
"console_scripts": [
"jno=jno.__main__:main",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Embedded Systems"
],
)