-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
55 lines (47 loc) · 1.6 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
52
53
54
55
#!/usr/bin/env python
from setuptools import setup
with open('VERSION') as version_file:
version = version_file.read()
with open('README.rst') as readme_file:
long_description = readme_file.read()
with open('requirements.txt') as requirements_file:
install_requires = requirements_file.read().splitlines()
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Communications',
'Topic :: Communications :: Telephony',
'Topic :: System :: Networking',
'Topic :: System :: Networking :: Monitoring',
]
data_files = [
('/etc', ['etc/smsgateway.yml'])
]
scripts = [
'bin/smsgateway'
]
setup(
name='smsgateway-gammu',
version=version,
description='Send SMS messages via REST api using Gammu',
long_description=long_description,
url='https://github.com/vvanholl/smsgateway-gammu',
author='Vincent Van Hollebeke',
author_email='[email protected]',
license='Apache License, Version 2.0',
install_requires=install_requires,
classifiers=classifiers,
data_files=data_files,
scripts=scripts
)