|
1 | 1 | from os import path |
2 | | -from setuptools import setup |
| 2 | +from setuptools import setup, find_packages |
3 | 3 | from importlib.machinery import SourceFileLoader |
4 | 4 |
|
5 | 5 | ### To run the tests: |
|
25 | 25 | author="foss42", |
26 | 26 | |
27 | 27 | 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.", |
29 | 29 | long_description=LONG_DESCRIPTION, |
30 | 30 | long_description_content_type="text/markdown", |
31 | 31 | url="https://github.com/foss42/foss42", |
32 | 32 | project_urls={ |
33 | 33 | "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", |
37 | 37 | }, |
38 | 38 | test_suite="test", |
39 | | - packages=['foss42'], |
| 39 | + packages= find_packages(), |
40 | 40 | install_requires=DEPENDENCIES, |
41 | 41 | tests_require=DEPENDENCIES, |
42 | 42 | python_requires='>=3.10', |
|
0 commit comments