Skip to content

Commit

Permalink
v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sgherbst committed Jan 16, 2020
1 parent 4d68cbd commit 3ffc993
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 12 deletions.
3 changes: 0 additions & 3 deletions setup.cfg

This file was deleted.

37 changes: 28 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,41 @@
from distutils.core import setup
from setuptools import setup

name = 'svreal'
version = '0.1.3'

DESCRIPTION = '''\
Library for working with fixed-point numbers in SystemVerilog\
'''

with open('README.md', 'r') as fh:
LONG_DESCRIPTION = fh.read()

setup(
name='svreal',
version='0.1.2',
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=[
f'{name}'
],
scripts=[
],
install_requires=[
]
license='MIT',
description='Library for working with fixed-point numbers in SystemVerilog',
url=f'https://github.com/sgherbst/{name}',
author='Steven Herbst',
author_email='[email protected]',
url='https://github.com/sgherbst/svreal',
download_url = 'https://github.com/sgherbst/svreal/archive/v0.1.2.tar.gz',
keywords = ['fixed-point', 'fixed point', 'verilog', 'system-verilog', 'system verilog', 'synthesizable', 'fpga'],
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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
f'Programming Language :: Python :: 3.7'
],
zip_safe=False
)

0 comments on commit 3ffc993

Please sign in to comment.