forked from waterloop/wcosa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (42 loc) · 1.19 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
46
47
48
49
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
install_requires = [
'colorama',
'pyserial>=3,<4',
'six',
'gitpython',
]
def package_files(directory):
paths = []
for (path, directories, filenames) in os.walk(directory):
for filename in filenames:
paths.append(os.path.join('..', path, filename))
return paths
setup(
name='WCosa',
version='1.1.0',
description='Create, Build, Upload and Monitor AVR Cosa Projects',
author='Deep Dhillon, Jeff Niu',
long_description=open('README.rst').read(),
license='MIT',
packages=find_packages(),
install_requires=install_requires,
package_data={
'': package_files('toolchain') + package_files('templates'),
'wcosa': ['*.json'],
},
entry_points={
'console_scripts': [
'wcosa = wcosa.wcosa:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
],
keywords=[
'iot', 'embedded', 'arduino', 'avr', 'fpga', 'firmware',
'hardware', 'microcontroller', 'debug', 'cosa', 'tool',
],
)