-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 834 Bytes
/
setup.py
File metadata and controls
35 lines (32 loc) · 834 Bytes
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
'''Setup script
Usage: pip install .
To install development dependencies too, run: pip install .[dev]
'''
from setuptools import setup, find_packages
from _version import __version__
setup(
name='tedxntua2019',
version=__version__,
packages=find_packages(),
scripts=['manage.py'],
url='https://github.com/TEDxNTUA/tedxntua2019',
author='TEDxNTUA 2019 IT Team',
author_email='webmaster@tedxntua.com',
install_requires=[
'dj-database-url',
'Django',
'mysqlclient',
'django-versatileimagefield',
'django-webpack-loader',
'django-parler',
],
extras_require={
'dev': [
'pylint',
'pylint-django',
'pylint-quotes',
'git-pylint-commit-hook',
'django-extensions',
],
},
)