-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
60 lines (55 loc) · 1.71 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
import os
from setuptools import setup, find_packages
name = 'anasymod'
version = '0.4.0'
DESCRIPTION = '''\
Tool for running mixed-signal emulations on FPGAs\
'''
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
install_requires=[
'svreal>=0.2.7',
'msdsl>=0.3.7',
'jinja2',
'pyvcd',
'pyserial',
'PyYAML',
'si-prefix'
]
if os.name == 'nt':
install_requires += ['wexpect>=3.3.0']
else:
install_requires += ['pexpect']
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=install_requires,
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
)