-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
45 lines (40 loc) · 1.42 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# coding: utf-8
import os
from setuptools import setup
VERSION = '0.3.1'
ROOT_DIR = os.path.dirname(__file__)
REQUIREMENTS = [
line.strip() for line in
open(os.path.join(ROOT_DIR, 'requirements.txt')).readlines()
]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='logtail-python',
version=VERSION,
packages=['logtail'],
include_package_data=True,
license='ISC',
description='Logtail.com client library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/logtail/logtail-python',
download_url='https://github.com/logtail/logtail-python/tarball/%s' % (VERSION),
keywords=['api', 'logtail', 'logging', 'client'],
install_requires=REQUIREMENTS,
author='Logtail',
author_email='[email protected]',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)