forked from stefanfoulis/django-phonenumber-field
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
name="django-phonenumber-field",
version = ":versiontools:phonenumber_field:",
url='http://github.com/stefanfoulis/django-phonenumber-field',
license='BSD',
platforms=['OS Independent'],
description="An international phone number field for django models.",
setup_requires = [
'versiontools >= 1.4',
],
install_requires = [
'phonenumbers',
],
long_description=open('README.rst').read(),
author='Stefan Foulis',
author_email='[email protected]',
maintainer='Stefan Foulis',
maintainer_email='[email protected]',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)