-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
51 lines (47 loc) · 1.54 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
from setuptools import setup, find_packages
name = 'anasymod'
version = '0.1.4'
DESCRIPTION = '''\
Tool for running mixed-signal emulations on FPGAs\
'''
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
setup(
name=name,
version=version,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords = ['analog', 'mixed-signal', 'mixed signal', 'vivado',
'xcelium', 'iverilog', 'icarus-verilog', 'icarus verilog',
'generator', 'verilog', 'system-verilog', 'system verilog',
'emulation', 'fpga'],
packages=find_packages(),
entry_points = {
'console_scripts': [
'anasymod=anasymod.analysis:main'
]
},
install_requires=[
'svreal',
'msdsl',
'jinja2',
'pyvcd',
'pyserial'
],
license='BSD 3-Clause "New" or "Revised" License',
url=f'https://github.com/sgherbst/{name}',
author='Gabriel Rutsch, Steven Herbst, Shivani Saravanan',
author_email='[email protected]',
python_requires='>=3.7',
download_url = f'https://github.com/sgherbst/{name}/archive/v{version}.tar.gz',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'License :: OSI Approved :: BSD License',
f'Programming Language :: Python :: 3.7'
],
include_package_data=True,
zip_safe=False
)