-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.cfg
49 lines (45 loc) · 1.67 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
47
48
49
# See documentation : https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
# Full example : github.com/pyscaffold/pyscaffold/blob/master/setup.cfg
[metadata]
name = pyveoliaidf
version = attr: pyveoliaidf.__version__
author = Stephane Senart
author_email = [email protected]
description = Retrieve water consumption from Veolia Ile-de-France web site (French Water Company)
long_description = file: README.md, CHANGELOG.md, LICENSE.md
long_description_content_type = text/markdown
platforms = any
license = MIT
license_files = LICENSE.md
url = https://github.com/ssenart/pyveoliaidf
download_url = https://github.com/ssenart/pyveoliaidf/releases
project_urls =
Home = https://github.com/ssenart/pyveoliaidf
Source = https://github.com/ssenart/pyveoliaidf
Issues = https://github.com/ssenart/pyveoliaidf/issues
Changelog = https://github.com/ssenart/pyveoliaidf/blob/master/CHANGELOG.md
Download = https://pypi.org/project/pyveoliaidf
keywords = Resource, Water, Meter, Consumption, Veolia, Ile-de-France
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Software Development :: Libraries
Operating System :: OS Independent
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
[options]
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.9
install_requires =
selenium == 4.17.2
openpyxl >= 2.6.3
[options.entry_points]
console_scripts =
pyveoliaidf = pyveoliaidf.__main__:main
[bdist_wheel]
universal = False
plat-name = any
python-tag = py38