forked from APSL/django-email-foundation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.28 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
44
45
46
47
import re
from setuptools import setup
package = open('django_email_foundation/__init__.py').read()
metadata = dict(re.findall("__([A-Z]+)__ = '([^']+)'", package))
__VERSION__ = metadata['VERSION']
# Requirements
INSTALL_REQUIRES = (
)
TEST_REQUIREMENTS = (
'pytest',
'pytest-flake8',
)
setup(
name='django-email-foundation',
version=__VERSION__,
description='django-email-foundation is a Django package for help you to create emails using '
'the "zurb foundation" technologies',
long_description='',
author='Francesc Arpí',
author_email='francesc.arpi@gmail.com',
url='http://github.com/APSL/django-email-foundation',
install_requires=INSTALL_REQUIRES,
packages=[
'django_email_foundation',
],
include_package_data=True,
# tests
tests_require=TEST_REQUIREMENTS,
test_suite='pytest',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 2.1',
]
)