forked from FragileTech/flogging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.14 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
from importlib.machinery import SourceFileLoader
from pathlib import Path
from setuptools import find_packages, setup
version = SourceFileLoader(
"flogging.version",
str(Path(__file__).parent / "flogging" / "version.py"),
).load_module()
with open(Path(__file__).with_name("README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="flogging",
description="flogging nice logging formatting and structured logging.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
version=version.__version__,
license="MIT",
author="fragiletech",
author_email="",
url="",
keywords=["Machine learning", "artificial intelligence"],
tests_require=["pytest>=5.3.5", "hypothesis>=5.6.0"],
extras_require={},
install_requires=["xxhash"],
package_data={"": ["README.md"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
],
)