-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 876 Bytes
/
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
#!/usr/bin/env python3
import sys
from setuptools import setup, find_packages
needs_pytest = bool({'pytest', 'test', 'ptr'}.intersection(sys.argv))
setup(
name='venelin-site',
version='2.1.4',
description='Simple Personal WEB site made with Django',
author='Venelin Stoykov',
author_email='[email protected]',
url='https://stoykov.tk/',
setup_requires=['pytest-runner'] if needs_pytest else [],
packages=find_packages(include=['venelin']),
install_requires=[
'Django>=4.2,<5',
'Pillow>=4.3.0',
'pilkit>=2.0',
'django-ckeditor>=5.4.0,<7.0',
'django-extensions>=3.0.6,<4',
'django-appconf>=1.0.1',
'django-imagekit>=4.0.1',
'social-auth-core[openidconnect]>=4.0.3',
'social-auth-app-django>=4.0.0',
'Pygments',
],
tests_require=['pytest-django'],
)