-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 993 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
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
import io
from distutils.core import setup
from os import path
from yesno import __version__
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with io.open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="msl09_yesno",
version=__version__,
description="A module that provides common functions for yes/no CLI queries",
author="Marcelo Lacerda",
author_email="marceloslacerda@gmail.com",
url="https://github.com/marceloslacerda/yesno",
packages=["yesno"],
long_description=long_description,
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
"Environment :: Console",
"Programming Language :: Python :: 3.7",
],
keywords="query cli function",
)