This repository was archived by the owner on Apr 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (40 loc) · 1.26 KB
/
setup.py
File metadata and controls
51 lines (40 loc) · 1.26 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
Setup script for pyquanta
"""
from setuptools import setup
from setuptools import find_packages
def readme():
"""
Extracts contents from README.md
"""
with open('README.md') as r:
return r.read()
def requirements():
"""
Fetch requirements from requirements.txt
"""
with open('requirements.txt') as req:
return req.read().splitlines()
setup(name='pyquanta',
version='0.2.1',
description='Pyquanta is a python module to interact with Quanta API',
long_description=readme(),
license='MIT',
url='https://github.com/quanta-computing/pyquanta',
author="Matthieu 'Korrigan' Rosinski",
author_email='mro@quanta-computing.com',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities',
],
packages=find_packages(),
install_requires=requirements(),
)