forked from mcintyre94/ragelib
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.cfg
33 lines (30 loc) · 1022 Bytes
/
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
[metadata]
name = ragelib
description = A helper library for RAGE
long_description = file: README.md
long-description-content-type = text/markdown; charset=UTF-8
author = Xenserver
license = BSD-3-Clause
url = https://github.com/perf101/ragelib
project_urls =
Bug Tracker = https://github.com/perf101/ragelib/issues
Source Code = https://github.com/perf101/ragelib
classifiers =
License :: OSI Approved :: BSD License
Development Status :: 6 - Mature
Intended Audience :: Developers
Programming Language :: Python :: 3
Topic :: System :: Systems Administration
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
install_requires =
selenium >= 4.18.1, <5
bs4
tqdm
python_requires = >=3.6, <4
[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python
# 3. If at all possible, it is good practice to do this. If you cannot, you
# will need to generate wheels for each Python version that you support.
universal=1