-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
38 lines (37 loc) · 1.14 KB
/
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
36
37
38
from setuptools import setup, find_packages
setup(
name='seele',
version='0.2.3',
packages=find_packages(),
include_package_data=True,
install_requires=[
'django>=5.0.6',
'django-bootstrap4>=23.4',
'sqlparse>=0.3.1',
'pillow>=10.3.0',
'requests>=2.32.3',
'bleach>=6.1.0',
'django-pwa>=1.1.0',
'gTTS>=2.5.2',
],
entry_points={
'console_scripts': [
'seele_start=seele_app.entrypoint:main',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
author='Nicholas DeSanctis, Joseph Malegni, Christian Ferrer, Logan Chenicek, Xael Font',
author_email='[email protected]',
description='Website packaged for UF in Japan, Summer 2024',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/JMalegni/DisasterPrepApp',
project_urls={
'Source': 'https://github.com/JMalegni/DisasterPrepApp',
},
)