forked from luckyluke/nokiomane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.2 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
# TODO:da rifinire
from distutils.core import setup
import nokiomane
# Metadata
NAME = "nokiomane"
VERSION = nokiomane.__version__
DESCRIPTION = "Nokia PC-Suite clone based on Gammu"
AUTHOR = "Luca Dariz"
AUTHOR_EMAIL = "[email protected]"
URL = nokiomane.__url__
LICENSE = nokiomane.__license__
# Setup
setup(name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
platforms=["any"],
packages=packages,
cmdclass=doc_commands,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Topic :: Communications :: Chat',
'Topic :: Communications :: Telephony',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
])