-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 880 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (27 loc) · 880 Bytes
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
from setuptools import setup, find_packages
setup(name='dirng',
version='1.0.1',
author='Peter J. Brown',
author_email='pjb519@york.ac.uk',
description='Designing quantum-secure randomness expansion protocols',
long_description = 'For details see the github repo github.com/peterjbrown519/dirng',
url='https://github.com/peterjbrown519/dirng',
license='GNU',
packages= find_packages(),
package_dir={'dirng': 'dirng'},
package_data ={'dirng': ['etc/dirng_config.json']},
include_package_data = True,
install_requires=[
'numpy',
'scipy',
'tabulate',
'ncpol2sdpa',
'sympy',
'tabulate',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
],)