FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
gitdb/setup.py at master · gitpython-developers/gitdb · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jul 26, 2026. It is now read-only.
gitpython-developers
/
gitdb
Public archive
Notifications
You must be signed in to change notification settings
Fork
68
Star
227
Code
Issues
6
Pull requests
0
Discussions
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
gitdb
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
47 lines (44 loc) · 1.73 KB
Breadcrumbs
gitdb
/
setup.py
Copy path
File metadata and controls
executable file
·
47 lines (44 loc) · 1.73 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from
setuptools
import
setup
# NOTE: This is currently duplicated from the gitdb.__init__ module, because
# that's just how you write a setup.py (nobody reads this stuff out of the
# module)
__author__
=
"Sebastian Thiel"
__contact__
=
"byronimo@gmail.com"
__homepage__
=
"https://github.com/gitpython-developers/gitdb"
version_info
=
(
4
,
0
,
12
)
__version__
=
'.'
.
join
(
str
(
i
)
for
i
in
version_info
)
setup
(
name
=
"gitdb"
,
version
=
__version__
,
description
=
"Git Object Database"
,
author
=
__author__
,
author_email
=
__contact__
,
url
=
__homepage__
,
packages
=
(
'gitdb'
,
'gitdb.db'
,
'gitdb.utils'
,
'gitdb.test'
),
license
=
"BSD License"
,
zip_safe
=
False
,
install_requires
=
[
'smmap>=3.0.1,<6'
],
long_description
=
"""GitDB is a pure-Python git object database"""
,
python_requires
=
'>=3.7'
,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Environment :: Console"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: BSD License"
,
"Operating System :: OS Independent"
,
"Operating System :: POSIX"
,
"Operating System :: Microsoft :: Windows"
,
"Operating System :: MacOS :: MacOS X"
,
"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 :: 3.13"
,
"Programming Language :: Python :: 3 :: Only"
,
]
)
Back
|
FazBrowse Home
|
New Git URL