-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
47 lines (45 loc) · 1.53 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
from importlib import import_module
from setuptools import setup
with open('README.rst') as f:
readme = f.read()
setup(
name='bronzebeard',
version=import_module('bronzebeard').__version__,
author='Andrew Dailey',
author_email='[email protected]',
description='Minimal ecosystem for bare-metal RISC-V development',
long_description=readme,
long_description_content_type='text/x-rst',
url='https://github.com/theandrew168/bronzebeard',
project_urls={
'Documentation': 'https://bronzebeard.readthedocs.io',
'Source Code': 'https://github.com/theandrew168/bronzebeard',
'Issue Tracker': 'https://github.com/theandrew168/bronzebeard/issues',
},
packages=['bronzebeard'],
include_package_data=True,
install_requires=[
'intelhex',
'pyserial',
'pyusb',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Assembly',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Software Development :: Assemblers',
'Topic :: Software Development :: Embedded Systems',
],
python_requires='>=3.6',
entry_points={
'console_scripts': [
'bronzebeard = bronzebeard.asm:cli_main',
'bronzebeard-dfu = bronzebeard.dfu:cli_main',
],
},
)