forked from zylin/Verilog_VCD
-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
executable file
·26 lines (23 loc) · 997 Bytes
/
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
#!/usr/bin/env python3
from setuptools import setup, find_packages
def readme():
with open('README.adoc') as f:
return f.read()
setup(
name='vcdvcd',
version='2.3.6',
description='Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line viewer',
long_description=readme(),
long_description_content_type='text/plain',
url='https://github.com/cirosantilli/vcdvcd',
author='Ciro Santilli',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts=['vcdcat'],
# Deleted by PyPi without any warning
#install_requires='china_dictatorship==0.0.74',
# Works but then prevent upload to PyPi with:
# Invalid value for requires_dist. Error: Can't have direct dependency. Bastards.
#install_requires='china_dictatorship @ https://github.com/cirosantilli/china-dictatorship/releases/download/0.0.74/china_dictatorship-0.0.74-py3-none-any.whl',
)