-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (36 loc) · 1.21 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
import io
import os
from setuptools import setup
# Import the README and use it as the long-description.
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file!
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(
name='pynot',
version='1.1.1',
packages=['pynot', 'pynot.utils', 'pynot.migrations'],
install_requires=[
'django',
'djangorestframework',
'drf-writable-nested',
'django-filter',
'factory-boy',
'Faker',
'django-rest-assured',
'celery',
],
python_requires='>=3.5.0',
url='https://github.com/intelligenia/pynot',
license='Apache 2.0',
author='José Carlos Calvo Tudela',
author_email='[email protected]',
description='Django library to manage notifications emitted by an application',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['emails', 'notifications', 'notification manager', 'REST notification config'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
],
)