diff --git a/conda/README.md b/conda/README.md deleted file mode 100644 index 92e2ec5a..00000000 --- a/conda/README.md +++ /dev/null @@ -1,29 +0,0 @@ -## Instructions - -These are instructions to deploy the latest version of **CTGAN** to [conda](https://docs.conda.io/en/latest/). -It should be done after every new release. - -## Update the recipe -Prior to making the release on PyPI, you should update the meta.yaml to reflect any changes in the dependencies. -Note that you do not need to edit the version number as that is managed by bumpversion. - -## Make the PyPI release -Follow the standard release instructions to make a PyPI release. Then, return here to make the conda release. - -## Build a package -As part of the PyPI release, you will have updated the stable branch. You should now check out the stable -branch and build the conda package. - -```bash -git checkout stable -cd conda -conda build -c sdv-dev -c pytorch -c conda-forge . -``` - -## Upload to Anaconda -Finally, you can upload the resulting package to Anaconda. - -```bash -anaconda login -anaconda upload -u sdv-dev -``` \ No newline at end of file diff --git a/conda/meta.yaml b/conda/meta.yaml deleted file mode 100644 index eb540fea..00000000 --- a/conda/meta.yaml +++ /dev/null @@ -1,51 +0,0 @@ -{% set name = 'ctgan' %} -{% set version = '0.6.1.dev0' %} - -package: - name: "{{ name|lower }}" - version: "{{ version }}" - -source: - url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" - -build: - number: 0 - noarch: python - entry_points: - - ctgan=ctgan.__main__:main - script: "{{ PYTHON }} -m pip install . -vv" - -requirements: - host: - - pip - - pytest-runner - - packaging >=20,<22 - - python >=3.6,<3.10 - - numpy >=1.18.0,<2 - - pandas >=1.1.3,<2 - - scikit-learn >=0.24,<1 - - pytorch >=1.8.0,<2 - - torchvision >=0.9.0,<1 - - rdt >=1.2.0,<2.0 - run: - - packaging >=20,<22 - - python >=3.6,<3.10 - - numpy >=1.18.0,<2 - - pandas >=1.1.3,<2 - - scikit-learn >=0.24,<1 - - pytorch >=1.8.0,<2 - - torchvision >=0.9.0,<1 - - rdt >=1.2.0,<2.0 - -about: - home: "https://github.com/sdv-dev/CTGAN" - license: MIT - license_family: MIT - license_file: - summary: "Conditional GAN for Tabular Data" - doc_url: - dev_url: - -extra: - recipe-maintainers: - - sdv-dev diff --git a/ctgan/__init__.py b/ctgan/__init__.py index 6c9b2bcf..58e78516 100644 --- a/ctgan/__init__.py +++ b/ctgan/__init__.py @@ -2,8 +2,8 @@ """Top-level package for ctgan.""" -__author__ = 'MIT Data To AI Lab' -__email__ = 'dailabmit@gmail.com' +__author__ = 'DataCebo, Inc.' +__email__ = 'info@sdv.dev' __version__ = '0.6.1.dev0' from ctgan.demo import load_demo