-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (46 loc) · 1.74 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
50
51
from codecs import open
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
packages=find_packages(),
include_package_data=True,
entry_points={
"console_scripts": ["pyphone=pyphone:main", ]
},
python_requires='~=3.5',
install_requires=["python-gammu", "Pillow", "httplib2", "oauth2client", "google-api-python-client", "pyperclip"],
name="pyPhone",
version="1.0.0a2",
description="Minimalistic phone client",
long_description=long_description,
author="Christopher Hubmann",
author_email="[email protected]",
platforms=["Linux", "Mac OSX", "Windows XP/2000/NT", "Windows 95/98/ME"],
keywords=[
"mobile", "phone", "SMS", "gammu", "google", "contacts"
],
license="MIT",
url="https://github.com/ChrisDeadman/pyPhone",
download_url="https://github.com/ChrisDeadman/pyPhone/archive/master.zip",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved"
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Utilities",
"Topic :: Communications :: Telephony",
"Topic :: System :: Hardware"
]
)