forked from praekelt/mtvc-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 800 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 800 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
from setuptools import setup, find_packages
setup(
name='mtvc-api-client',
version='0.0.14',
description='Praekelt MTVC API Client',
author='Praekelt Consulting',
author_email='[email protected]',
url='https://github.com/praekelt/mtvc-api-client',
packages=find_packages(),
dependency_links=[],
install_requires=[
'hammock==0.2.4'
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking',
],
)