-
Notifications
You must be signed in to change notification settings - Fork 6
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
10 changed files
with
910 additions
and
722 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 |
---|---|---|
|
@@ -3,51 +3,53 @@ | |
|
||
|
||
root_dir = Path(__file__).absolute().parent | ||
with (root_dir / 'VERSION').open() as f: | ||
with (root_dir / "VERSION").open() as f: | ||
version = f.read() | ||
with (root_dir / 'README.md').open() as f: | ||
with (root_dir / "README.md").open() as f: | ||
long_description = f.read() | ||
with (root_dir / 'requirements.in').open() as f: | ||
with (root_dir / "requirements.in").open() as f: | ||
requirements = f.read().splitlines() | ||
|
||
|
||
setuptools.setup( | ||
name='utils-flask-sqlalchemy', | ||
name="utils-flask-sqlalchemy", | ||
version=version, | ||
description="Python lib of tools for Flask and SQLAlchemy", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
maintainer='Parcs nationaux des Écrins et des Cévennes', | ||
maintainer_email='[email protected]', | ||
url='https://github.com/PnX-SI/Utils-Flask-SQLAlchemy', | ||
packages=setuptools.find_packages('src'), | ||
package_dir={'': 'src'}, | ||
long_description_content_type="text/markdown", | ||
maintainer="Parcs nationaux des Écrins et des Cévennes", | ||
maintainer_email="[email protected]", | ||
url="https://github.com/PnX-SI/Utils-Flask-SQLAlchemy", | ||
packages=setuptools.find_packages("src"), | ||
package_dir={"": "src"}, | ||
install_requires=requirements, | ||
extras_require={ | ||
'tests': [ | ||
'pytest', | ||
'geoalchemy2', | ||
'shapely', | ||
'jsonschema', | ||
'flask-marshmallow', | ||
'marshmallow-sqlalchemy', | ||
"tests": [ | ||
"pytest", | ||
"geoalchemy2", | ||
"shapely", | ||
"jsonschema", | ||
"flask-marshmallow", | ||
"marshmallow-sqlalchemy", | ||
], | ||
}, | ||
entry_points={ | ||
'alembic': [ | ||
'migrations = utils_flask_sqla.migrations:versions', | ||
"alembic": [ | ||
"migrations = utils_flask_sqla.migrations:versions", | ||
], | ||
'pytest11': [ | ||
'sqla = utils_flask_sqla.tests.plugin', | ||
"pytest11": [ | ||
"sqla = utils_flask_sqla.tests.plugin", | ||
], | ||
'flask.commands': [ | ||
'db = utils_flask_sqla.commands:db_cli', | ||
"flask.commands": [ | ||
"db = utils_flask_sqla.commands:db_cli", | ||
], | ||
}, | ||
classifiers=['Development Status :: 1 - Planning', | ||
'Intended Audience :: Developers', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'License :: OSI Approved :: GNU Affero General Public License v3', | ||
'Operating System :: OS Independent'], | ||
classifiers=[ | ||
"Development Status :: 1 - Planning", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU Affero General Public License v3", | ||
"Operating System :: OS Independent", | ||
], | ||
) |
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
Oops, something went wrong.