-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
93 lines (73 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Filename: setup.py
import vcd2wavedrom
try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
NAME = "vcd2wavedrom"
VERSION = "0.0.1"
AUTHOR = "Philipp van Kempen"
AUTHOR_EMAIL = "philipp DOT van DASH kempen AT tum DOT de"
DESCRIPTION = "TODO"
KEYWORDS = [
"EDA",
"electronic design automation",
"logic",
"visualization",
"vcd",
"wavedrom",
"conversion",
"wavedrom",
"hdl",
"simulation",
]
with open('README.md') as fin:
README = fin.read()
with open('LICENSE') as fin:
LICENSE = fin.read()
URL = "https://github.com/PhilippvK/python-vcd2wavedrom"
DOWNLOAD_URL = "https://github.com/PhilippvK/vcd2wavedrom/releases"
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
]
MYEDA_PKGS = [
'vcd2wavedrom',
]
TEST_PKGS = [
'tests',
]
PACKAGES = MYEDA_PKGS + TEST_PKGS
EXT_MODULES = []
SCRIPTS = [
]
install_requires=[
# 'termcolor>=1.1.0',
# 'pyeda>=0.28.0',
# 'quine-mccluskey @ https://github.com/tpircher/quine-mccluskey',
'wavedrom>=2.0.3.post2',
]
setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description=DESCRIPTION,
keywords=KEYWORDS,
long_description=README,
license=LICENSE,
url=URL,
download_url=DOWNLOAD_URL,
classifiers=CLASSIFIERS,
#packages=PACKAGES,
#ext_modules=EXT_MODULES,
#scripts=SCRIPTS,
test_suite='nose.collector',
python_requires='>=3.5',
install_requires=install_requires,
py_modules=['vcd2wavedrom'],
)