-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
94 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# This files related to the databricks compatible library | ||
|
||
For testing purposes only |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=68.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" |
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 |
---|---|---|
@@ -0,0 +1,82 @@ | ||
[metadata] | ||
name = syngen | ||
version = file: src/syngen/VERSION | ||
description = file: DESCRIPTION | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/tdspora/syngen | ||
author = EPAM Systems, Inc. | ||
maintainer = Pavel Bobyrev | ||
license = GPLv3 License | ||
keywords = data, generation, synthetic, vae, tabular | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Operating System :: POSIX :: Linux | ||
Operating System :: Microsoft :: Windows | ||
License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
|
||
|
||
[options] | ||
package_dir = | ||
= src | ||
packages = find: | ||
include_package_data = True | ||
python_requires = >3.10, <3.12 | ||
install_requires = | ||
aiohttp>=3.9.0 | ||
attrs | ||
avro | ||
base32-crockford | ||
boto3 | ||
category_encoders==2.6.3 | ||
click | ||
Jinja2 | ||
keras==2.15.* | ||
lazy==1.4 | ||
loguru | ||
MarkupSafe==2.1.1 | ||
marshmallow==3.19.* | ||
matplotlib==3.7.* | ||
mlflow-skinny==2.11.* | ||
numpy==1.23.* | ||
openpyxl | ||
pandas==2.2.* | ||
pandavro==1.8.* | ||
pathos==0.2.* | ||
pillow==9.4.* | ||
psutil | ||
py-ulid | ||
pytest | ||
pytest-reportportal | ||
python-slugify[unidecode]>=7.0.0 | ||
PyYAML==6.* | ||
reportportal-client | ||
scikit_learn==1.3.* | ||
scipy==1.11.* | ||
seaborn==0.12.* | ||
setuptools==68.* | ||
tensorflow==2.15.* | ||
tqdm==4.66.3 | ||
Werkzeug==3.0.3 | ||
xlrd | ||
xlwt | ||
|
||
|
||
[options.extras_require] | ||
ui = | ||
streamlit==1.31.* | ||
streamlit_option_menu | ||
|
||
|
||
[options.packages.find] | ||
where = src | ||
[options.package_data] | ||
* = *.py, *.html, *.ttf, *.svg, *.css, *.js | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
train = syngen.train:launch_train | ||
infer = syngen.infer:launch_infer | ||
syngen = syngen:main |