-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 823 Bytes
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="ziim",
version="0.0.1",
scripts=['./scripts/ziim'],
author="Sanix-darker",
author_email="[email protected]",
description="Let your CLI find available solutions for errors/exceptions in your code for you, "
"no need open a Browser. and do something yourself, you just have to select the forum",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sanix-darker/ziim",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)