forked from eshaan7/click-creds
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
74 lines (66 loc) · 2.45 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
74
"""
# click-creds
Pluggable credentials storage and management for click CLI apps.
## Docs & Example Usage: https://github.com/eshaan7/click-creds
"""
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
VERSION = (HERE / "version.txt").read_text()
GITHUB_URL = "https://github.com/intelowlproject/click-creds"
requirements = (HERE / "requirements.txt").read_text().split("\n")
requirements_test = (HERE / "requirements.dev.txt").read_text().split("\n")
# This call to setup() does all the work
setup(
name="intelowl-click-creds",
version=VERSION,
url=GITHUB_URL,
license="BSD",
author="Eshaan Bansal",
author_email="[email protected]",
description="Pluggable credentials storage and management for click CLI apps.",
long_description=README,
long_description_content_type="text/markdown",
python_requires=">=3.6",
py_modules=["click_creds"],
packages=["click_creds"],
zip_safe=False,
include_package_data=True,
install_requires=requirements,
keywords="click credentials creds netrc auth cli python store",
project_urls={
"Documentation": GITHUB_URL,
"Funding": "https://www.paypal.me/eshaanbansal",
"Source": GITHUB_URL,
"Tracker": "{}/issues".format(GITHUB_URL),
},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
"dev": requirements_test + requirements,
"test": requirements_test + requirements,
},
)