-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
49 lines (46 loc) · 1.19 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
47
48
49
from setuptools import setup
try:
import pypandoc
description = pypandoc.convert("README.md", "rst")
except:
description = "Library to use Free Mobile SMS service with Python"
try:
with open(".version", "r") as file:
version = file.read()
except:
version = "0.0.0"
setup(
name="freemobilesms",
description="Free Mobile SMS Service",
long_description=description,
version=version,
url="https://github.com/hug33k/FreeMobileSMS",
download_url="https://github.com/hug33k/FreeMobileSMS/archive/{version}.tar.gz".format(version=version),
author="Hugo SCHOCH",
author_email="[email protected]",
license="Apache2",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2"
],
keywords=[
"free mobile",
"freemobile",
"free",
"sms"
],
packages=[
"freemobilesms"
],
install_requires=[
"urllib3",
"requests"
],
entry_points={
"console_scripts": [
"sms=freemobilesms.cli:main"
]
}
)