forked from sgherbst/svreal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.13 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
from setuptools import setup, find_packages
name = 'svreal'
version = '0.2.7'
DESCRIPTION = '''\
Library for working with fixed-point numbers in SystemVerilog\
'''
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 = ['fixed-point', 'fixed point', 'verilog', 'system-verilog', 'system verilog', 'synthesizable', 'fpga'],
packages=find_packages(exclude=['tests']),
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
)