-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (33 loc) · 1.13 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
from setuptools import find_packages, setup
with open('requirements.txt') as fin:
REQUIREMENTS = [line.strip() for line in fin if '#' not in line]
with open('README.md') as readme:
README = readme.read()
setup(
name='django-context',
version='0.1.1',
packages=find_packages(),
include_package_data=True,
license='BSD',
description=(
'Django app to have an ability to set custom context '
'in a main application'),
long_description=README,
install_requires=REQUIREMENTS,
url='https://github.com/GregEremeev/django-context',
author='Greg Eremeev',
author_email='gregory.eremeev@gmail.com',
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.1',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
],
)