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 409 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. from setuptools import find_packages, setup
  2. setup(
  3. name='pjud',
  4. packages=find_packages(where="src"),
  5. package_dir={"": "src"},
  6. version='0.1.0',
  7. description='Este proyecto busca analizar los datos abiertos del Poder Judicial de Chile.',
  8. author='escuelita-chilota',
  9. license='MIT',
  10. entry_points={
  11. 'console_scripts': [
  12. 'pjud=pjud.cli:main',
  13. ],
  14. },
  15. )
Tip!

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

Comments

Loading...