]> mj.ucw.cz Git - osdd.git/blob - python_client_pip_package/setup.cfg
Add python library
[osdd.git] / python_client_pip_package / setup.cfg
1 [metadata]
2 name = osd
3 version = 0.0.1
4 author = Jiri Kalvoda
5 author_email = jirikalvoda@kam.mff.cuni.cz
6 description = On-Screen Disply Client
7 long_description_content_type = text/plain
8 classifiers =
9     Operating System :: OS Independent
10     Programming Language :: Python :: 3
11     Programming Language :: Python :: 3.7
12     Programming Language :: Python :: 3.8
13     Programming Language :: Python :: 3.9
14     Programming Language :: Python :: 3.10
15
16 [options]
17 package_dir =
18     = src
19 packages = osd
20 python_requires = >=3.7
21 zip_safe = False
22 install_requires =
23     argparse >= 0.21
24     typing >= 3.0
25
26 [options.packages.find]
27 where = src
28
29 [bdist_wheel]
30 universal = 1
31