-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
35 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
setup(
name='django-reportmail',
version='1.3',
packages=['reportmail'],
url='https://github.com/hirokiky/django-reportmail',
license='MIT',
author='hirokiky',
author_email='hirokiky@gmail.com',
description='django library to render and send report mail. ',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
install_requires=[
'Django>=1.6,<1.9',
],
include_package_data=True,
zip_safe=False,
)