-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1013 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'pylse',
version = '0.1.0',
packages = find_packages(),
description = 'Pulse-Transfer Level eDSL for the design, simulation, and verification of superconductor electronics',
author = 'UCSBarchlab',
author_email = '[email protected], [email protected]',
# url = '',
# download_url = '',
tests_require = ['tox', 'nose'],
classifiers = [
'Development Status :: 1 - Planning',
'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 :: 3.8',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: System :: Hardware'
],
)