-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (31 loc) · 815 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (31 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import io
from setuptools import find_packages, setup
with io.open('README.rst', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name='parsons',
version='0.1.0',
url='http://parsons.problemsolving.io',
license='MIT',
maintainer='Shlomi Hod',
maintainer_email='shlomi.hod@uni-potsdam.de',
description='The basic blog app built in the Flask tutorial.',
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
'sqlalchemy<1.4',
'flask_sqlalchemy',
'python-dotenv',
'psycopg2',
'jinja2-base64-filters',
],
# extras_require={
# 'test': [
# 'pytest',
# 'coverage',
# ],
# },
)