Skip to content

Commit

Permalink
v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sgherbst committed Jan 16, 2020
1 parent 27a8a46 commit 4d68cbd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@ ucli.key
obj_dir
a.out
build/
dist/
MANIFEST
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
from setuptools import setup, find_packages
from distutils.core import setup

setup(
name='svreal',
version='0.1',
version='0.1.2',
license='MIT',
description='Library for working with fixed-point numbers in SystemVerilog',
author='Steven Herbst',
author_email='[email protected]',
url='https://github.com/sgherbst/svreal',
download_url = 'https://github.com/sgherbst/svreal/archive/v0.1.1.tar.gz',
keywords = ['fixed-point', 'fixed point', 'verilog', 'system-verilog', 'system verilog', 'synthesizable', 'fpga']
packages=['svreal'],
install_requires=[
],
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'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
Expand All @@ -21,6 +18,5 @@
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7'
],
include_package_data=True,
zip_safe=False
)

0 comments on commit 4d68cbd

Please sign in to comment.