-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (38 loc) · 1.16 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
40
41
42
43
#!/usr/bin/env python
#-*- coding:utf-8 -*-
"""
django-emailvision
------------------
django-emailvision is a python library that communicate with the REST (PI Syntax)
API of emailvision.
Links
`````
* `website <https://github.com/liberation/django-emailvision>`_
* `emailvision <http://www.emailvision.fr/>`_
"""
from setuptools import setup
setup(
name='django-emailvision',
version='0.2.1',
url='http://packages.python.org/django-emailvision/',
license='WTF',
author='Djaz Team',
author_email='[email protected]',
description='Access emailvision API with Python',
long_description=__doc__,
packages=['emailvision'],
zip_safe=False,
platforms='any',
# tests_require=['nose', 'mock_http'],
# test_suite="nose.collector",
install_requires=['lxml'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)