-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
executable file
·47 lines (44 loc) · 1.16 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
46
47
#!/usr/bin/env python
from setuptools import find_packages, setup
project = "flake8-logging-format"
version = "1.0.0"
long_description = open("README.md").read()
setup(
name=project,
version=version,
author="Globality Engineering",
author_email="engineering@globality.com",
url="https://github.com/globality-corp/flake8-logging-format",
license="Apache License 2.0",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
include_package_data=True,
zip_safe=False,
keywords="microcosm",
install_requires=[
],
extras_require={
"test": [
"pytest",
"pytest-cov",
"PyHamcrest",
],
"lint": [
"flake8",
]
},
dependency_links=[
],
entry_points={
"flake8.extension": [
"G = logging_format.api:LoggingFormatValidator",
],
"logging.extra.example": [
"example = logging_format.whitelist:example_whitelist",
],
},
classifiers=[
"Framework :: Flake8",
],
)