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 501 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  1. #!/usr/bin/env python3
  2. """Installation script."""
  3. import os
  4. import sys
  5. from setuptools import setup
  6. # ensure the current directory is on sys.path so versioneer can be imported
  7. # when pip uses PEP 517/518 build rules.
  8. # https://github.com/python-versioneer/python-versioneer/issues/193
  9. sys.path.append(os.path.dirname(__file__))
  10. import versioneer # noqa: E402
  11. # see pyproject.toml for static project metadata
  12. setup(
  13. version=versioneer.get_version(),
  14. cmdclass=versioneer.get_cmdclass(),
  15. )
Tip!

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

Comments

Loading...