-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
61 lines (54 loc) · 1.79 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from __future__ import print_function
from setuptools import setup, find_packages
import os
from os.path import join as pjoin
from distutils import log
from jupyter_packaging import (
create_cmdclass,
install_npm,
ensure_targets,
combine_commands,
get_version,
)
here = os.path.dirname(os.path.abspath(__file__))
log.set_verbosity(log.DEBUG)
log.info('setup.py entered')
log.info('$PATH=%s' % os.environ['PATH'])
name = 'pulsemaker'
LONG_DESCRIPTION = 'A Python widget library for designing pulses and pulse schedules for quantum computing hardware. Can be used in Jupyter notebooks, JupyterLab, and the IPython kernel.'
# Get pulsemaker version
version = get_version(pjoin(name, '_version.py'))
setup_args = dict(
name=name,
version=version,
description='A Python widget library for designing pulses and pulse schedules',
long_description=LONG_DESCRIPTION,
include_package_data=True,
install_requires=[
'ipywidgets>=7.0.0',
],
packages=find_packages(),
zip_safe=False,
author='Diego Emilio Serrano',
author_email='diemilio@gmail.com',
url='https://github.com/adgt/pulsemaker',
keywords=[
'ipython',
'jupyter',
'widgets',
],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Widget Sets',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)
setup(**setup_args)