-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 1.11 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
from setuptools import setup, find_packages
version = '0.2'
setup(name='arduino-sketch',
version=version,
description="Compile and upload Arduino sketches from command line",
long_description="""""",
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Embedded Systems",
],
keywords='arduino',
author='Oliver Tonnhofer',
author_email='[email protected]',
url='https://github.com/ktt-ol/arduino-sketch',
license='MIT License',
packages=find_packages(),
package_data={'arduino_sketch': ['*.ini', 'Arduino.mk']},
zip_safe=False,
install_requires=[
],
entry_points="""
# -*- Entry points: -*-
[console_scripts]
arduino-sketch = arduino_sketch.app:main
""",
)