-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSetup.py
More file actions
26 lines (21 loc) · 848 Bytes
/
Setup.py
File metadata and controls
26 lines (21 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import find_packages, setup
with open('requirements.txt') as fh:
requirements = [line.strip() for line in fh.readlines()]
with open("Readme.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup_kwargs = dict(
name='DataGenerator',
packages=find_packages(''),
package_dir={'':'.'},
version='0.1.0',
install_requires=requirements,
#setup_requires = requirements,
description='This repository contains the code for the paper "Synthetic Data Generation for Imbalanced Multi-class Problems with Heterogeneous Groups".',
long_description=long_description,
long_description_content_type="text/markdown",
author='Dennis Treder-Tschechlov',
author_email='dennis.tschechlov@ipvs.uni-stuttgart.de',
license='MIT',
python_requires=">=3.9",
)
setup(**setup_kwargs)