-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
37 lines (33 loc) · 1.27 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
from os import path
from setuptools import setup, find_packages
HERE = path.abspath(path.dirname(__file__))
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()
setup(
name='django-phone-field',
version='1.8.1',
url=r'https://github.com/VeryApt/django-phone-field/',
license='GPL',
platforms=['OS Independent'],
description='Lightweight model and form field for phone numbers in Django',
install_requires=['Django>=1.10'],
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Andrew Mackowski',
author_email='[email protected]',
maintainer='Andrew Mackowski',
maintainer_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Framework :: Django',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='django phonenumber phone number model field',
packages=find_packages(exclude=['test_proj', 'test_app']),
include_package_data=True
)