-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 885 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 885 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
27
#!/usr/bin/env python
from distutils.core import setup
setup(
name='SRFax',
version='0.1.2',
description='SRFax (www.srfax.com) API library',
long_description=open('README.rst').read(),
author='Andjelko Horvat',
author_email='comel@vingd.com',
url='https://github.com/vingd/srfax-api-python',
packages=['srfax'],
install_requires=[i.strip() for i in open('requirements.txt').readlines()],
license='MIT',
platforms=['OS Independent'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Communications :: Fax',
'Topic :: Software Development :: Libraries :: Python Modules',
)
)