-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (36 loc) · 858 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·37 lines (36 loc) · 858 Bytes
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
#!/usr/bin/env python3
import fastentrypoints
from setuptools import find_packages
from setuptools import setup
setup(
name='regulator',
description='regulator: register dump decoder',
author='Jan Luebbe',
author_email='entwicklung@pengutronix.de',
license='LGPL-2.1',
use_scm_version=True,
url='https://github.com/jluebbe/regulator',
python_requires='>=3.5',
setup_requires=[
'pytest-runner',
'setuptools_scm',
],
tests_require=[
'hypothesis',
],
install_requires=[
'attrs',
'bitstruct',
'click',
'prettyprinter',
'pyyaml',
'sortedcontainers',
],
packages=find_packages('src'),
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'regulator = regulator.__main__:cli',
]
},
)