-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 846 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 846 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='python-smsapi',
version='0.2',
license='LICENSE.txt',
description='Client library for SMSAPI.pl API.',
long_description=open('README.txt').read(),
author='ELCODO',
author_email='info@elcodo.pl',
url='https://github.com/elcodo/python-smsapi',
py_modules=['smsapi', ],
keywords=['api', 'smsapi.pl', 'sms'],
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
],
)