Skip to content

Commit

Permalink
[Pipeline] improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
ssenart committed Dec 3, 2021
1 parent 78fe350 commit 15547cb
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 37 deletions.
50 changes: 48 additions & 2 deletions setup.cfg
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
36 changes: 1 addition & 35 deletions setup.py
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()

0 comments on commit 15547cb

Please sign in to comment.