forked from resurfaceio/logger-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.3 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
from setuptools import find_packages, setup
def read_file(name):
with open(name) as fd:
return fd.read()
setup(
name="usagelogger",
version="2.2.5",
description="Logging usage of Python-based services, with user privacy by design.",
long_description=read_file("DESCRIPTIONS.md"),
long_description_content_type="text/markdown",
url="https://resurface.io",
author="Resurface Labs",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Topic :: Internet :: Log Analysis",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
keywords="logging resurface",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.7, <4",
install_requires=read_file("requirements.txt").splitlines(),
include_package_data=True,
tests_require=["pytest"],
project_urls={
"Bug Reports": "https://github.com/resurfaceio/logger-python/issues",
"Source": "https://github.com/resurfaceio/logger-python",
},
)