Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 394 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
  1. try:
  2. from setuptools import setup, find_packages
  3. except ImportError:
  4. from distutils.core import setup, find_packages
  5. setup(name='yspecies',
  6. version='0.3.0',
  7. py_modules=['yspecies', 'config', 'dataset', 'explanations', 'helpers', 'models', 'partition', 'preprocess', 'selection', 'tuning', 'utils', 'workflow'],
  8. packages=find_packages(),
  9. description='yspecies')
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...