-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.7.2 (2021-04-01) ------------------ * change python_requires to ">=3.7# abandonne la validation.
- Loading branch information
Showing
4 changed files
with
33 additions
and
22 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
__author__ = """Benjamin C.""" | ||
__email__ = "[email protected]" | ||
__version__ = "__version__ = '0.7.1'" | ||
__version__ = "__version__ = '0.7.2'" | ||
|
||
from creopyson.connection import Client | ||
from creopyson.objects import jlpoint | ||
|
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,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.7.1 | ||
current_version = 0.7.2 | ||
commit = True | ||
tag = False | ||
|
||
|
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 |
---|---|---|
|
@@ -5,42 +5,48 @@ | |
|
||
from setuptools import setup, find_packages | ||
|
||
with open('README.rst') as readme_file: | ||
with open("README.rst") as readme_file: | ||
readme = readme_file.read() | ||
|
||
with open('HISTORY.rst') as history_file: | ||
with open("HISTORY.rst") as history_file: | ||
history = history_file.read() | ||
|
||
requirements = ['requests'] | ||
requirements = ["requests"] | ||
|
||
setup_requirements = ['pytest-runner', ] | ||
setup_requirements = [ | ||
"pytest-runner", | ||
] | ||
|
||
test_requirements = ['pytest', ] | ||
test_requirements = [ | ||
"pytest", | ||
] | ||
|
||
setup( | ||
author="Benjamin C.", | ||
author_email='[email protected]', | ||
author_email="[email protected]", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3 :: Only', | ||
'Programming Language :: Python :: 3.7', | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
description="Python library for Creoson", | ||
install_requires=requirements, | ||
license="MIT license", | ||
long_description=readme + '\n\n' + history, | ||
long_description=readme + "\n\n" + history, | ||
include_package_data=True, | ||
keywords='creopyson', | ||
name='creopyson', | ||
packages=find_packages(include=['creopyson']), | ||
python_requires='==3.7.*', | ||
keywords="creopyson", | ||
name="creopyson", | ||
packages=find_packages(include=["creopyson"]), | ||
python_requires=">=3.7", | ||
setup_requires=setup_requirements, | ||
test_suite='tests', | ||
test_suite="tests", | ||
tests_require=test_requirements, | ||
url='https://github.com/Zepmanbc/creopyson', | ||
version='0.7.1', | ||
url="https://github.com/Zepmanbc/creopyson", | ||
version="version='0.7.2'", | ||
zip_safe=False, | ||
) |