diff options
| author | Alexis M <alexis@notmyidea.org> | 2019-10-07 00:07:25 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2019-10-11 19:52:37 +0200 |
| commit | 480939afe54fc6e8e79d6d74b8a8a3991276d460 (patch) | |
| tree | 17ef49f564a1b976bd82ed488dcbcfc647336db0 /setup.cfg | |
| parent | 9fe84bc1a2ef088e345e6215cf2e2fa3b53fc2da (diff) | |
| download | ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.zip ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.tar.gz ihatemoney-mirror-480939afe54fc6e8e79d6d74b8a8a3991276d460.tar.bz2 | |
Remove support for python2.
In the same move :
- use a setup.cfg file for packaging
- remove the use of six
Diffstat (limited to 'setup.cfg')
| -rw-r--r-- | setup.cfg | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b62a3f5 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,53 @@ +[metadata] +name = ihatemoney +version = 5.dev0 +url = https://github.com/spiral-project/ihatemoney +description = A simple shared budget manager web application. +long_description = file: README.rst, CHANGELOG.rst +author = Alexis Métaireau & contributors +author_email= alexis@notmyidea.org +keywords = web, budget +license = Custom BSD Beerware +classifiers = + Programming Language :: Python + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Topic :: Internet :: WWW/HTTP + Topic :: Internet :: WWW/HTTP :: WSGI :: Application + +[options] +packages = find: +include_package_data = True +zip_safe = False +install_requires = + flask + flask-wtf + flask-sqlalchemy<3.0 + flask-mail + Flask-Migrate + Flask-script + flask-babel + flask-restful + jinja2 + blinker + flask-cors + itsdangerous + email_validator + debts + +[options.extras_require] +dev = + zest.releaser + tox + pytest + flake8 + Flask-Testing + +[options.entry_points] +console_scripts = + ihatemoney = ihatemoney.manage:main + +paste.app_factory = + main = ihatemoney.run:main |
