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 717 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
21
22
  1. #!/usr/bin/env python
  2. import os
  3. from distutils.core import setup
  4. folder = os.path.dirname(os.path.realpath(__file__))
  5. requirements_path = os.path.join(folder, 'requirements.txt')
  6. install_requires = []
  7. if os.path.isfile(requirements_path):
  8. with open(requirements_path) as f:
  9. install_requires = f.read().splitlines()
  10. setup(name='lieposenet',
  11. version='0.1',
  12. description='LiePoseNet',
  13. author='Mikhail Kurenkov',
  14. author_email='Mikhail.Kurenkov@skoltech.ru',
  15. package_dir={},
  16. packages=["lieposenet", "lieposenet.utils", "lieposenet.models",
  17. "lieposenet.data", "lieposenet.criterions", "lieposenet.factories"],
  18. install_requires=install_requires
  19. )
Tip!

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

Comments

Loading...