-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (44 loc) · 1.5 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
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Clippy generates command-line interfaces for Python modules.
"""
import os
import sys
import setuptools
from version_query import predict_version_str # pylint: disable=import-error
__version__ = predict_version_str()
THIS_VERSION = sys.version_info[:2]
REQUIRED_VERSION = (3, 6)
if THIS_VERSION < REQUIRED_VERSION:
sys.stderr.write("Python version is not high enough to run this library.")
sys.exit(1)
THIS_FOLDER = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(THIS_FOLDER, "readme.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="Clippy",
version=__version__,
author="Steve Richey",
author_email="[email protected]",
description="Clippy generates command-line interfaces for Python modules.",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/gowithfloat/clippy",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
entry_points="""
[console_scripts]
"""
)