forked from chrisspen/django-input-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.15 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
from setuptools import setup, find_packages
VERSION = __import__('input_mask').__version__
setup(
name='django-input-mask',
version=VERSION,
url='http://github.com/caioariede/django-input-mask',
author='Caio Ariede',
author_email='[email protected]',
description='JavaScript input masks for Django',
license='MIT',
zip_safe=False,
platforms=['any'],
packages=find_packages(),
package_data={'input_mask': [
'static/input_mask/js/*',
]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
],
include_package_data=True,
install_requires=[
'Django>=1.7,<1.11',
'six',
],
test_suite="runtests.runtests",
)