-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (62 loc) · 2.36 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/usr/bin/.env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import find_packages, setup
import versioneer
# Package meta-data.
NAME = "func-to-script"
DESCRIPTION = """
func-to-script` is a lightweight and convenient tool which can be used to turn a Python function into a command line
script, with minimal boilerplate!
As `func-to-script` is only a thin wrapper around `argparse`, it is incredibly lightweight there are no
additional dependencies required!
`func-to-script` is designed to be used in simple cases, so offers a streamlined feature set.
For more complex scenarios, it is recommended to use `argparse` directly.
"""
URL = "https://github.com/Chris-hughes10/func-to-script"
EMAIL = "31883449+Chris-hughes10@users.noreply.github.com"
AUTHOR = "Chris Hughes"
REQUIRES_PYTHON = ">=3.8.0"
VERSION = versioneer.get_version()
FILEPATH = os.path.abspath(os.path.dirname(__file__))
with open("requirements.txt", "r") as f:
REQUIRED = [line.strip() for line in f if line.strip() and not line.startswith('#')]
# Import the README and use it as the long-description.
# Note: this will only work if 'README.md' is present in your MANIFEST.in file!
try:
with io.open(os.path.join(FILEPATH, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = "\n" + f.read()
except FileNotFoundError:
LONG_DESCRIPTION = DESCRIPTION
# Where the magic happens:
setup(
name=NAME,
version=VERSION,
cmdclass=versioneer.get_cmdclass(),
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author=AUTHOR,
author_email=EMAIL,
python_requires=REQUIRES_PYTHON,
url=URL,
packages=find_packages(
exclude=["tests", "*.tests", "*.tests.*", "tests.*", "test"]
),
scripts=[],
install_requires=REQUIRED,
include_package_data=True,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
],
)