-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.02 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
from setuptools import setup, find_packages
setup(
name = 'pyrtl_extras',
version = '0.0.0',
packages = find_packages(),
description = 'My Extra Library of PyRTL Fun',
author = 'Michael Christensen',
author_email = 'mchristensen@cs.ucsb.edu',
#url = '',
#download_url = '',
install_requires = ['six'],
tests_require = ['tox','nose'],
extras_require = {},
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: System :: Hardware'
]
)