-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 756 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("README.md", "r") as rm:
long_description = rm.read()
setuptools.setup(
name="error-explainer",
version="0.14",
description="Custom messages for errors",
long_description=long_description,
long_description_content_type="text/markdown",
author="Kaarel Loide",
author_email="kaarel.loide@gmail.com",
url="https://github.com/K44rel/error-explainer",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)