diff --git a/setup.py b/setup.py deleted file mode 100644 index b829834a..00000000 --- a/setup.py +++ /dev/null @@ -1,143 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -"""The setup script.""" - -import json -import os -from glob import glob -from setuptools import setup, find_namespace_packages - -with open('README.md', encoding='utf-8') as readme_file: - readme = readme_file.read() - -with open('HISTORY.md', encoding='utf-8') as history_file: - history = history_file.read() - -install_requires = [ - "numpy>=1.20.0,<2;python_version<'3.10'", - "numpy>=1.23.3,<2;python_version>='3.10'", - "pandas>=1.1.3;python_version<'3.10'", - "pandas>=1.3.4;python_version>='3.10' and python_version<'3.11'", - "pandas>=1.5.0;python_version>='3.11'", - "scipy>=1.5.4,<2;python_version<'3.10'", - "scipy>=1.9.2,<2;python_version>='3.10'", - "scikit-learn>=0.24,<2;python_version<'3.10'", - "scikit-learn>=1.1.3,<2;python_version>='3.10'", - 'Faker>=17,<20', -] - -copulas_requires = [ - 'copulas>=0.9.0,<0.10', -] - -setup_requires = [ - 'pytest-runner>=2.11.1', -] - -tests_require = [ - 'pytest>=3.4.2', - 'pytest-cov>=2.6.0', - 'jupyter>=1.0.0,<2', - 'rundoc>=0.4.3,<0.5', - 'pytest-subtests>=0.5,<1.0', -] - -addons_require = [] - -for addon_json in glob('rdt/transformers/addons/*/*.json'): - with open(addon_json, 'r', encoding='utf-8') as addon_json_file: - requirements = json.load(addon_json_file).get('requirements') - if requirements: - addons_require.extend(requirements) - -development_requires = [ - # general - 'bumpversion>=0.5.3,<0.6', - 'pip>=9.0.1', - 'watchdog>=0.8.3,<0.11', - - # style check - 'pycodestyle<2.8.0,>=2.7.0', - 'pyflakes<2.4.0,>=2.3.0', - 'flake8>=3.7.7,<4', - 'flake8-absolute-import>=1.0,<2', - 'flake8-builtins>=1.5.3,<1.6', - 'flake8-comprehensions>=3.6.1,<3.7', - 'flake8-debugger>=4.0.0,<4.1', - 'flake8-docstrings>=1.5.0,<2', - 'flake8-mock>=0.3,<0.4', - 'flake8-variables-names>=0.0.4,<0.1', - 'dlint>=0.11.0,<0.12', # code security addon for flake8 - 'flake8-fixme>=1.1.1,<1.2', - 'flake8-eradicate>=1.1.0,<1.2', - 'flake8-mutable>=1.2.0,<1.3', - 'flake8-print>=4.0.0,<4.1', - 'isort>=4.3.4,<5', - 'pylint>=2.5.3,<3', - 'pandas-vet>=0.2.3,<0.3', - 'flake8-multiline-containers>=0.0.18,<0.1', - 'flake8-pytest-style>=1.5.0,<2', - 'flake8-quotes>=3.3.0,<4', - 'flake8-expression-complexity>=0.0.9,<0.1', - 'pep8-naming>=0.12.1,<0.13', - 'pydocstyle>=6.1.1,<6.2', - 'flake8-sfs>=0.0.3,<0.1', - - # fix style issues - 'autoflake>=1.1,<2', - 'autopep8>=1.4.3,<1.6', - - # distribute on PyPI - 'twine>=1.10.0,<4', - 'wheel>=0.30.0', - - # Advanced testing - 'coverage>=4.5.1,<6', - 'tox>=2.9.1,<4', - 'tabulate>=0.8.9,<1', - - # Invoking test commands - 'invoke' -] - -setup( - author='DataCebo, Inc.', - author_email='info@sdv.dev', - classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'License :: Free for non-commercial use', - 'Natural Language :: English', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', - 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.11', - 'Topic :: Scientific/Engineering :: Artificial Intelligence', - ], - description='Reversible Data Transforms', - extras_require={ - 'copulas': copulas_requires, - 'test': tests_require + copulas_requires + addons_require, - 'dev': development_requires + tests_require + copulas_requires + addons_require, - }, - include_package_data=True, - install_requires=install_requires, - keywords='rdt', - license='BSL-1.1', - long_description=readme + '\n\n' + history, - long_description_content_type='text/markdown', - name='rdt', - packages=find_namespace_packages( - include=['rdt', 'rdt.*'], - exclude=['rdt.transformers.addons.*'] - ), - python_requires='>=3.8,<3.12', - setup_requires=setup_requires, - test_suite='tests', - tests_require=tests_require, - url='https://github.com/sdv-dev/RDT', - version='1.9.3.dev0', - zip_safe=False, -)