FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-java-stream/setup.py at main · alemazzo/python-java-stream · GitHub
alemazzo
/
python-java-stream
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
8
Code
Issues
1
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-java-stream
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (24 loc) · 945 Bytes
Breadcrumbs
python-java-stream
/
setup.py
Copy path
File metadata and controls
29 lines (24 loc) · 945 Bytes
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
from
os
import
path
from
setuptools
import
setup
,
find_packages
f
=
open
(
'./version'
)
major
=
1
minor
=
5
fix
=
int
(
f
.
readline
())
version
=
f"
{
major
}
.
{
minor
}
.
{
fix
}
"
this_directory
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
this_directory
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
setup
(
name
=
'java-stream'
,
version
=
f'
{
version
}
'
,
description
=
'Java Stream implementation for Python'
,
url
=
'https://github.com/alemazzo/Python-Java-Stream'
,
author
=
'Alessandro Mazzoli'
,
author_email
=
'developer.alessandro.mazzoli@gmail.com'
,
license
=
'GNU'
,
packages
=
find_packages
(),
keywords
=
[
'query'
,
'iterator'
,
'generator'
,
'stream'
,
'data'
,
'functional'
,
'list'
,
'processing'
,
'java'
,
'filter'
,
'map'
,
'reduce'
,
'processing'
],
zip_safe
=
False
,
long_description
=
long_description
,
long_description_content_type
=
'text/markdown'
)
Back
|
FazBrowse Home
|
New Git URL