-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 969 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
from setuptools import setup, find_packages
def get_long_description():
with open('./README.rst', 'r') as readme:
return readme.read()
setup(
name='django-email-tracker',
version='0.8.1',
description='Email Tracker for Django',
author='Venelina Yanakieva',
author_email='[email protected]',
maintainer='Venelin Stoykov',
maintainer_email='[email protected]',
url='https://github.com/IndustriaTech/django-email-tracker',
download_url='https://github.com/IndustriaTech/django-email-tracker/releases',
long_description=get_long_description(),
packages=find_packages(),
zip_safe=False,
install_requires=['django>=1.4'],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
)