-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
46 lines (36 loc) · 984 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
setup(
name='buza-website',
description='buza',
long_description=README,
classifiers=[
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
author='Ctrl Space',
author_email='[email protected]',
url='None',
license='BSD',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
setup_requires=['setuptools-scm'],
use_scm_version=True,
install_requires=[
'Django ~=2.1.0',
# General libraries
'Pillow',
# Django libraries
'django-crispy-forms',
'django-environ',
'django-taggit',
'social-auth-app-django',
],
entry_points={},
)