forked from exfm/exfm-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 636 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 636 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
version = '0.1-dev'
setup(name='exfm-client',
version=version,
description='Python client for exfm API',
long_description=open('./README.md').read(),
classifiers=[
"Topic :: Utilities",
"Programming Language :: Python",
"Operating System :: OS Independent",
"Natural Language :: English",
'License :: OSI Approved :: BSD License',
],
keywords='exfm api',
author='',
author_email='',
url='https://github.com/exfm/exfm-python-client',
license='BSD',
packages=['exfm'],
include_package_data=True,
zip_safe=True)