forked from matllubos/django-sms-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (44 loc) · 1.55 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from sms_validator.version import get_version
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='django-sms-validator',
version=get_version(),
description="Python library for sms validation.",
keywords='django, sms, python',
author='Lubos Matl',
author_email='[email protected]',
url='https://github.com/matllubos/sms-validator',
license='LGPL',
package_dir={'sms_validator': 'sms_validator'},
include_package_data=True,
packages=find_packages(),
classifiers=[
'Development Status :: 0 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU LESSER GENERAL PUBLIC LICENSE (LGPL)',
'Natural Language :: Czech',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
'django-chamber>=0.0.10',
'django-sms-operator>=0.0.3',
],
dependency_links=[
'https://github.com/matllubos/django-chamber/tarball/0.0.10#egg=django-chamber-0.0.10',
'https://github.com/matllubos/django-sms-operator/tarball/0.0.3#egg=django-sms-operator-0.0.3',
],
zip_safe=False
)