-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
43 lines (37 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
40
41
42
43
from setuptools import find_packages, setup
VERSION = "1.0.0"
REQUIRED = [
"typing-extensions",
]
def long_description() -> str:
with open("README.md", encoding="utf8") as f:
return f.read()
setup(
name="zulint",
version=VERSION,
author="Zulip Open Source Project",
description="A linter launcher for projects that have multiple source languages.",
long_description=long_description(),
long_description_content_type="text/markdown",
author_email="[email protected]",
python_requires=">=3.5",
url="https://github.com/zulip/zulint",
packages=find_packages(exclude=("tests",)),
package_data={
"zulint": ["py.typed"],
},
install_requires=REQUIRED,
license="Apache License 2.0",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)