-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (45 loc) · 1.3 KB
/
setup.py
File metadata and controls
47 lines (45 loc) · 1.3 KB
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
from setuptools import setup, find_packages
with open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name='akl.lt',
version='0.1.0',
description='AKL web site',
long_description=long_description,
url='https://github.com/python-dirbtuves/akl.lt',
author='Python dirbtuves',
author_email='python-dirbtuves@googlegroups.com',
license='AGPL',
keywords='website',
packages=find_packages(exclude=['tests*']),
install_requires=[
# We have to specify webtest explicitly, because of this bug:
# https://github.com/kmike/django-webtest/issues/28
'coverage',
'cssselect',
'django',
'django-allauth',
'django-compressor',
'django-debug-toolbar',
'django-extensions',
'django-libsass',
'django-nose',
'django-recaptcha',
'django-webtest',
'exportrecipe',
'lxml',
'markdown',
'psycopg2',
'pylint-django',
'tqdm',
'wagtail',
'webtest',
'yattag',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)