Skip to content

Commit 551e923

Browse files
committed
v0.0.1 release
1 parent f1bf387 commit 551e923

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
*.pyc
33
foss42.egg-info/
44
.vscode/
5+
build/
6+
dist/

foss42/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__all__ = ('VERSION',)
22

3-
VERSION = '0.0.1-rc1'
3+
VERSION = '0.0.1'

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from os import path
2-
from setuptools import setup
2+
from setuptools import setup, find_packages
33
from importlib.machinery import SourceFileLoader
44

55
### To run the tests:
@@ -25,18 +25,18 @@
2525
author="foss42",
2626
author_email="[email protected]",
2727
keywords='foss42 utility coversion validation generate transform ml bi visualization charts language graphs data map',
28-
description="Core Python library used by foss42 APIs.",
28+
description="Core Python library used by foss42 Open Source APIs.",
2929
long_description=LONG_DESCRIPTION,
3030
long_description_content_type="text/markdown",
3131
url="https://github.com/foss42/foss42",
3232
project_urls={
3333
"Homepage": "https://foss42.com",
34-
"Source Code": "https://github.com/foss42/foss42",
35-
"Bug Tracker": "https://github.com/foss42/foss42",
36-
"Documentation": "https://github.com/foss42/foss42/issues",
34+
"Source Code": "https://github.com/foss42/foss42-core",
35+
"Bug Tracker": "https://github.com/foss42/foss42-core/issues",
36+
"Documentation": "https://foss42.com",
3737
},
3838
test_suite="test",
39-
packages=['foss42'],
39+
packages= find_packages(),
4040
install_requires=DEPENDENCIES,
4141
tests_require=DEPENDENCIES,
4242
python_requires='>=3.10',

0 commit comments

Comments
 (0)