-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (41 loc) · 1.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
from setuptools import setup, find_packages
with open('README.md') as f:
README = f.read()
setup(
name='gitprivacy',
version='2.3.0',
description='Git wrapper redacting author and committer dates.',
long_description=README,
long_description_content_type="text/markdown",
keywords=["git", "privacy", "timestamps"],
maintainer='Christian Burkert',
maintainer_email='[email protected]',
url='https://github.com/EMPRI-DEVOPS/git-privacy',
license="BSD",
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'click>=7',
'gitpython',
'git-filter-repo>=2.27',
'pynacl',
],
entry_points={
'console_scripts': [
'git-privacy = gitprivacy.gitprivacy:cli'
]
},
classifiers=[
"Topic :: Software Development :: Version Control :: Git",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)