-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (26 loc) · 746 Bytes
/
setup.py
File metadata and controls
38 lines (26 loc) · 746 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
38
from setuptools import setup, find_packages
setup(
name="edalogparser",
use_scm_version={
"relative_to": __file__,
"write_to": "edalogparser/version.py",
},
description="Parse EDA tool output",
url="https://github.com/librecores/eda-log-parser",
author="Stefan Wallentowitz",
author_email="stefan@fossi-foundation.org",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
packages=find_packages(),
setup_requires=[
'setuptools_scm',
],
entry_points={
"console_scripts": [
"eda-log-parser=edalogparser.main:main",
],
},
)