-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
24 lines (22 loc) · 1007 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
from setuptools import find_packages, setup
# Read requirements from the requirements.txt file
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='SQuADDS',
version='0.3.6',
packages=find_packages(),
description='Our project introduces an open-source database of programmatically generated and experimentally validated superconducting quantum device designs, accessible through a user-friendly interface, significantly lowering the entry barrier for research in this field.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Sadman Ahmed Shanto',
author_email='shanto@usc.edu',
include_package_data=True,
url='https://github.com/LFL-Lab/SQuADDS',
install_requires=required, # required for pypi installations
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)