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 984 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
23
24
25
26
27
28
29
30
  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. filtred_install_requires = []
  11. for require in install_requires:
  12. if require[:2] == "-e":
  13. print("Warning: you need install {} separatly".format(require))
  14. else:
  15. filtred_install_requires.append(require)
  16. install_requires = filtred_install_requires
  17. setup(name='lieposenet',
  18. version='0.1',
  19. description='LiePoseNet',
  20. author='Mikhail Kurenkov',
  21. author_email='Mikhail.Kurenkov@skoltech.ru',
  22. package_dir={},
  23. packages=["lieposenet", "lieposenet.utils", "lieposenet.models",
  24. "lieposenet.data", "lieposenet.criterions", "lieposenet.factories"],
  25. install_requires=install_requires
  26. )
Tip!

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

Comments

Loading...