-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.01 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
from setuptools import find_packages, setup, Command
# https://github.com/pypa/pypi-legacy/issues/148
try:
import pypandoc
LONG_DESCRIPTION = pypandoc.convert('README.md', 'rst')
except ImportError:
LONG_DESCRIPTION = open('README.md').read()
setup(
name='whatabanger',
version='1.0.0',
description='A Bit Banged (via PyFTDI) based SWD implementation',
long_description=LONG_DESCRIPTION,
author='Peter Adkins',
author_email='[email protected]',
url='https://www.github.com/darkarnium/whatabanger',
packages=find_packages('src'),
license='MIT',
download_url='',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
package_dir={
'whatabanger': 'src/whatabanger',
},
scripts=[
'src/swdinit.py'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
'pytest-cov',
],
install_requires=[
'pyftdi==0.29.2',
]
)