-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
52 lines (47 loc) · 1.51 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
import os
from setuptools import setup, find_packages
name = 'msdsl'
version = '0.3.8'
DESCRIPTION = '''\
Library for generating synthesizable mixed-signal models for FPGA emulation\
'''
with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()
install_requires = [
'svreal>=0.2.7',
'scipy',
'numpy',
'matplotlib',
'scikit-rf',
'tqdm'
]
if os.name != 'nt':
install_requires.append('cvxpy')
setup(
name=name,
version=version,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords = ['analog', 'mixed-signal', 'mixed signal', 'behavioral',
'real number model', 'real number models', 'rnm', 'rnms',
'model', 'models', 'generator', 'verilog', 'system-verilog',
'system verilog', 'synthesizable', 'emulation', 'fpga'],
packages=find_packages(),
install_requires=install_requires,
license='MIT',
url=f'https://github.com/sgherbst/{name}',
author='Steven Herbst',
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 :: MIT License',
f'Programming Language :: Python :: 3.7'
],
include_package_data=True,
zip_safe=False
)