-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 917 Bytes
/
setup.py
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
35
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='statFMB',
version='0.1',
author='Pedro Coelho',
author_email='maia.coelho.dev@gmail.com',
url='https://github.com/maia-dev/statFMB',
description='A portal to Fundação Mata do Buçaco',
long_description=readme(),
license='GPLv3+',
packages=['statFMB'],
include_package_data=True,
install_requires=[
'flask',
'flask-security',
'flask-sqlalchemy',
'openpyxl',
'xlrd',
'eventlet',
'flask-socketio',
'flask-weasyprint',
'weasyprint',
'bcrypt',
],
entry_points={
'console_scripts': ['statFMB=statFMB.run:main',
'statFMB_createdb=statFMB.run:create_db',
'statFMB_create_user=statFMB.run:create_user'],
}
)