-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (23 loc) · 1.04 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
#! /usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(name="MaterialDjango",
version="3.0a1",
packages=find_packages(),
# scripts=[],
author="Jack Laxson",
author_email="[email protected]",
description="A Django library bringing paper-ui and iron polymer elements to django",
license="MIT",
include_package_data=True,
zip_safe=False,
install_requires=["django"],
url="https://github.com/Colorless-Green-Ideas/MaterialDjango",
keywords=["polymer", "paper-ui", "material design", "widgets", "theme"],
classifiers=["License :: OSI Approved :: MIT License",
'Intended Audience :: Developers', 'Development Status :: 4 - Beta',
"Framework :: Django", "Topic :: Text Processing :: Markup :: HTML",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7',
"Programming Language :: Python :: 3.5","Programming Language :: Python :: 3.6"]
)