-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·33 lines (29 loc) · 941 Bytes
/
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
#!/usr/bin/env python
import os
import sys
from djlinkmobile import __version__
from setuptools import setup
# Publish to Pypi
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name='django-linkmobile',
version=__version__,
description='Django application for receiving and saving callbacks from the Link Mobile MessageService API',
long_description=open('README.md').read(),
author='Funkbit',
author_email='[email protected]',
url='https://github.com/funkbit/django-linkmobile',
packages=['djlinkmobile'],
license='BSD',
classifiers=(
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
)
)