forked from icann/lgr-django
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (38 loc) · 1.07 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
#!/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from io import open
setup(
name='lgr-django',
version='2.0.0',
author='Viagenie and Wil Tan',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
license='TODO',
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 :: 1.8',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=[
# Core stuff
'Django',
'django-widget-tweaks',
'celery',
# LGR/Unicode modules
'lgr-core',
'munidata',
'picu',
# Other
'natsort'
]
)