forked from druids/django-pymess
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1011 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (31 loc) · 1011 Bytes
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
from setuptools import setup, find_packages
from pyston.version import get_version
setup(
name="django-pymess",
version=get_version(),
description="Pymess is a Django framework for sending messages",
author='Lubos Matl,Oskar Hollman',
author_email='matllubos@gmail.com',
url='https://github.com/druids/django-pymess',
license='BSD',
package_dir={'pymess': 'pymess'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=[
'django>=1.8',
'django-chamber>=0.3.7',
],
dependency_links=[
'https://github.com/druids/django-chamber/tarball/0.3.7#egg=django-chamber-0.3.7'
],
zip_safe=False
)