Skip to content

Commit

Permalink
package setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoLechemia committed Oct 11, 2019
1 parent 34ce15c commit f430446
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"restructuredtext.confPath": ""
}
Empty file added README.rst
Empty file.
1 change: 1 addition & 0 deletions __init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from utils_flask_sqla import serializers
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ def get_version(path="./VERSION"):
name='utils-flask-sqlalchemy',
version=get_version(),
description="Python lib of tools for Flask and SQLAlchemy",
long_description=open('README.md', encoding="utf-8").read().strip(),
long_description=open('README.rst', encoding="utf-8").read().strip(),
author="Les parcs nationaux de France",
url='https://github.com/PnX-SI/Nomenclature-api-module',
packages=setuptools.find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/PnX-SI/Utils-Flask-SQLAlchemy',
packages=setuptools.find_packages('utils_flask_sqla'),
package_dir={'': 'utils_flask_sqla'},
install_requires=list(open('requirements.txt', 'r')),
include_package_data=True,
zip_safe=False,
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit f430446

Please sign in to comment.