-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
46 lines (41 loc) · 1.26 KB
/
setup.cfg
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
[metadata]
name = dpsched
version = 1.0
author = Tao Luo
author_email = tao.luo@columbia.edu
description = Discrete Event Simulation for Differential Privacy Budget Scheduling
long_description = file: README.md, LICENSE.txt
download_url = https://github.com/taoluo/privacy-budget-scheduling
license = Apache Software License (https://www.apache.org/licenses/LICENSE-2.0)
license_file = LICENSE.txt
classifiers =
Development Status :: 4 - Beta
Environment :: Console
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: Apache License 2.0
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Scientific/Engineering
[options]
zip_safe = False
install_requires =
desmod
python_requires = >= 3.6
package_dir =
= ./
packages = find:
[options.packages.find]
where = ./
[options.extras_require]
plot = seaborn; notebook
[bdist_wheel]
universal = 1
[tool:pytest]