Skip to content

Commit

Permalink
build: Move requirements to setup file
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams committed Aug 12, 2024
1 parent 907e87d commit e172c87
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
7 changes: 0 additions & 7 deletions requirements.txt

This file was deleted.

27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.2',
'matplotlib~=3.8.2',
'seaborn~=0.13.0',
'setuptools==69.0.2'
],
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',
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',
},
)

0 comments on commit e172c87

Please sign in to comment.