forked from zatarra/rubberduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 798 Bytes
/
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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name="rubberduino",
version='0.1',
description='Tool to convert Rubber Ducky scripts to arduino compatible code.',
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
url='https://github.com/zatarra/rubberduino',
author='zatarra',
author_email='david.gouveia@gmail.com',
license="MIT",
packages=["rubberduino"],
install_requires=[
'markdown',
],
scripts=["rubberduino-convert"]
)