FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
smmap/setup.py at master · gitpython-developers/smmap · 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
/
smmap
Public archive
Notifications
You must be signed in to change notification settings
Fork
30
Star
74
Code
Issues
2
Pull requests
1
Actions
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
smmap
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
52 lines (48 loc) · 1.73 KB
Breadcrumbs
smmap
/
setup.py
Copy path
File metadata and controls
executable file
·
52 lines (48 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
48
49
50
51
52
#!/usr/bin/env python
import
os
try
:
from
setuptools
import
setup
,
find_packages
except
ImportError
:
from
ez_setup
import
use_setuptools
use_setuptools
()
from
setuptools
import
setup
,
find_packages
import
smmap
if
os
.
path
.
exists
(
"README.md"
):
long_description
=
open
(
'README.md'
,
encoding
=
"utf-8"
).
read
().
replace
(
'
\r
\n
'
,
'
\n
'
)
else
:
long_description
=
"See https://github.com/gitpython-developers/smmap"
setup
(
name
=
"smmap"
,
version
=
smmap
.
__version__
,
description
=
"A pure Python implementation of a sliding window memory map manager"
,
author
=
smmap
.
__author__
,
author_email
=
smmap
.
__contact__
,
url
=
smmap
.
__homepage__
,
platforms
=
[
"any"
],
license
=
"BSD-3-Clause"
,
packages
=
find_packages
(),
zip_safe
=
True
,
python_requires
=
">=3.7"
,
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"
,
],
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
,
)
Back
|
FazBrowse Home
|
New Git URL