-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 960 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 960 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
28
29
30
31
from setuptools import setup
from os import path
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
with open("%s/logdna/VERSION" % this_directory) as f:
version = f.read().strip('\n')
setup(
name='logdna',
packages=['logdna'],
package_data={'': ['VERSION']},
version=version,
description='A Python Package for Sending Logs to LogDNA',
author='LogDNA Inc.',
author_email='[email protected]',
license='MIT',
url='https://github.com/logdna/python',
download_url=('https://github.com/logdna/python/tarball/%s' % (version)),
keywords=['logdna', 'logging', 'logs', 'python', 'logdna.com', 'logger'],
install_requires=[
'requests',
],
classifiers=[],
long_description=long_description,
long_description_content_type='text/markdown',
)