aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg53
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