-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (44 loc) · 1.63 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
"""Responsive theme for LFS based on Zurb's Foundation
See:
https://github.com/misaelnieto/lfs-theme-foundation
"""
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
with open(path.join(here, 'CONTRIBUTORS.rst')) as f:
long_description += f.read()
with open(path.join(here, 'CHANGES.rst')) as f:
long_description += f.read()
setup(
name='lfs-theme-foundation',
version='0.1',
description="Responsive theme for LFS based on Zurb's Foundation",
long_description=long_description,
url='https://github.com/misaelnieto/lfs-theme-foundation',
author='Noe Nieto',
author_email='nnieto@noenieto.com',
packages=find_packages(),
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Spanish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='foundation zurb theme css responsive ecommerce e-commerce development lfs django-lfs',
include_package_data=True,
install_requires=[],
tests_require=['nose>=1.0'],
)