-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
32 lines (27 loc) · 1.14 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='ipxact2systemverilog',
python_requires='>=3',
version='1.0.23',
description='Generate VHDL, SystemVerilog, html, rst, md, pdf, c headers from an IPXACT description',
long_description_content_type="text/markdown",
long_description=readme(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Linguistic',
],
keywords='ipxact2systemverilog ipxact2vhdl VHDL SystemVerilog html rst md pdf IPXACT',
url='https://github.com/oddball/ipxact2systemverilog',
author='oddball',
license='GPL',
packages=['ipxact2systemverilog'],
install_requires=requirements,
scripts=['bin/ipxact2rst', 'bin/ipxact2md', 'bin/ipxact2systemverilog', 'bin/ipxact2vhdl', 'bin/ipxact2c'],
include_package_data=True,
zip_safe=False)