-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
26 lines (25 loc) · 951 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='sumologic',
version = '0.1.4',
description = 'Python library for working with the Sumo Logic api.',
long_description = open('README.rst').read(),
author = 'Sijis Aviles',
author_email = 'sijis.aviles@gmail.com',
packages=find_packages(where='src'),
package_dir={'': 'src'},
install_requires = ['requests'],
keywords = "sumologic api python",
url = 'https://github.com/sijis/sumologic-python',
download_url = 'https://github.com/sijis/sumologic-python',
platforms = ['OS Independent'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Operating System :: OS Independent',
],
)