-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·48 lines (47 loc) · 1.4 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
39
40
41
42
43
44
45
46
47
48
#!/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from io import open
setup(
name='lgr-django',
version='6.1.2',
author='Cofomo, Viagenie and Wil Tan',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
license='BSD',
description='Web-application for LGR editing',
long_description=open('README.md', encoding='utf-8').read(),
include_package_data=True,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django :: 3.1',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
install_requires=[
# Core stuff
'Django',
'django-widget-tweaks',
'django-redis-cache',
'django-autocomplete-light',
'django-cleanup',
'django-celery-results',
'django-celery-beat',
'celery',
'okta-jwt-verifier',
# LGR/Unicode modules
'lgr-core',
'munidata',
'picu',
# Other
'natsort'
]
)