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 404 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
  1. #!/usr/bin/env python
  2. from setuptools import setup, find_packages
  3. setup(
  4. name='project',
  5. version='0.0.0',
  6. description='Describe Your Cool Project',
  7. author='',
  8. author_email='',
  9. # REPLACE WITH YOUR OWN GITHUB PROJECT LINK
  10. url='https://github.com/PyTorchLightning/pytorch-lightning-conference-seed',
  11. install_requires=['pytorch-lightning'],
  12. packages=find_packages(),
  13. )
Tip!

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

Comments

Loading...