-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (66 loc) · 2.1 KB
/
setup.py
File metadata and controls
70 lines (66 loc) · 2.1 KB
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
#!/usr/bin/env python3
"""Setup script for git-safe."""
from setuptools import find_packages, setup
# Read the README file
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
# Dependencies
requirements = [
"cryptography>=3.4.8",
"python-gnupg>=0.5.0",
"pathspec>=0.9.0",
]
setup(
name="gitsafe-cli",
version="1.0.1",
author="Hernan Monserrat",
author_email="",
description="Effortless file encryption for your git repos—pattern-matched, secure, and keyfile-flexible.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hemonserrat/git-safe",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Archiving :: Backup",
"Topic :: Utilities",
],
python_requires=">=3.10",
install_requires=requirements,
extras_require={
"dev": [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
"isort>=5.12.0",
"mypy>=1.0.0",
],
"security": [
"bandit>=1.7.0",
"safety>=2.0.0",
],
},
entry_points={
"console_scripts": [
"git-safe=git_safe.cli:main",
],
},
scripts=["git-safe"],
include_package_data=True,
zip_safe=False,
keywords="git encryption security cryptography file-encryption gitattributes",
project_urls={
"Bug Reports": "https://github.com/hemonserrat/git-safe/issues",
"Source": "https://github.com/hemonserrat/git-safe",
"Documentation": "https://github.com/hemonserrat/git-safe#readme",
},
)