-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from SCAI-BIO/cleanup-build-and-functions
Cleanup build and functions
- Loading branch information
Showing
7 changed files
with
112 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,4 +23,31 @@ | |
author_email='[email protected]', | ||
description=DESCRIPTION, | ||
long_description=DESCRIPTION, | ||
long_description_content_type='text/markdown', | ||
install_requires=[ | ||
'pandas~=2.1.4', | ||
'numpy~=1.26.2', | ||
'scipy~=1.11.4', | ||
'scikit-learn~=1.5.1', | ||
'matplotlib~=3.8.2', | ||
'seaborn~=0.13.0', | ||
'setuptools==70.0.0' | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
], | ||
include_package_data=True, # Ensure non-Python files are included | ||
python_requires='>=3.9', # Specify minimum Python version | ||
keywords='synthetic-data, data-quality, data-visualization', | ||
project_urls={ | ||
'Documentation': 'https://github.com/SCAI-BIO/syndat#readme', | ||
'Source': 'https://github.com/SCAI-BIO/syndat', | ||
'Tracker': 'https://github.com/SCAI-BIO/syndat/issues', | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from syndat import domain | ||
from syndat import quality | ||
from syndat import visualization | ||
from syndat import scores | ||
from syndat import visualization |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters