Skip to content

Commit 40f332c

Browse files
committed
Refactor
1 parent cb7d53b commit 40f332c

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ __pycache__/
22
build/
33
dist/
44
Python_Java_Stream.egg-info/
5+
java_stream.egg-info/

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from setuptools import setup, find_packages
22
f = open('./version')
33

4-
major = 0
4+
major = 1
55
minor = int(f.readline())
66

77
version = f"{major}.{minor}"
88

9-
setup(name='Python Java Stream',
9+
setup(name='java-stream',
1010
version=f'{version}',
1111
description='Java Stream implementation for Python',
1212
url='https://github.com/alemazzo/Python-Java-Stream',

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
11
1+
0

0 commit comments

Comments
 (0)