-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
49 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,49 @@ | ||
# Inside of setup.cfg | ||
# See documentation : https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html | ||
# Full example : github.com/pyscaffold/pyscaffold/blob/master/setup.cfg | ||
|
||
[metadata] | ||
description-file = README.md | ||
name = pyveoliaidf | ||
version = attr: pyveoliaidf.__version__ | ||
author = Stephane Senart | ||
author_email = stephane.senart@gmail.com | ||
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.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
|
||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = find: | ||
python_requires = >=3.5 | ||
install_requires = | ||
selenium == 3.141 | ||
openpyxl == 2.6.3 | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
pyveoliaidf = pyveoliaidf.__main__:main | ||
|
||
[bdist_wheel] | ||
universal = False | ||
plat-name = any | ||
python-tag = py38 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,3 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name = 'pyveoliaidf', | ||
version = '0.1.12', | ||
author = 'Stephane Senart', | ||
author_email = 'stephane.senart@gmail.com', | ||
description = 'Retrieve water consumption from Veolia Ile-de-France web site (French Water Company)', | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url = 'https://github.com/ssenart/PyVeoliaIDF', | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', # Choose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package 'Intended Audience :: Developers', # Define that your audience are developers | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3.7', | ||
], | ||
python_requires='>=3.7', | ||
download_url = 'https://github.com/ssenart/pyveoliaidf/releases/tag/0.1.12', | ||
keywords = ['Resource', 'Water', 'Consumption', 'Veolia', 'Ile-de-France'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'pyveoliaidf = pyveoliaidf.__main__:main' | ||
] | ||
}, | ||
install_requires=[ | ||
'selenium == 3.141', | ||
'openpyxl == 2.6.3' | ||
], | ||
license='MIT', | ||
) | ||
|
||
setuptools.setup() |