-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
51 lines (45 loc) · 1.47 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
48
49
50
51
import re
from setuptools import setup
package = open('django_email_foundation/__init__.py').read()
metadata = dict(re.findall("__([A-Z]+)__ = '([^']+)'", package))
__VERSION__ = metadata['VERSION']
with open('README.md') as docs_index:
long_description = docs_index.read()
# Requirements
INSTALL_REQUIRES = (
)
TEST_REQUIREMENTS = (
'pytest==4.3.1',
'pytest-flake8==1.0.4',
)
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=long_description,
long_description_content_type='text/markdown',
author='Francesc Arpí',
author_email='[email protected]',
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 :: 1.9',
'Framework :: Django :: 2.1',
]
)