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 1.2 KB

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
31
32
33
34
35
36
37
38
39
40
41
42
  1. from os.path import join, dirname
  2. from setuptools import find_packages, setup
  3. try:
  4. long_description = open(join(dirname(__file__), "README.md"), encoding="utf8").read()
  5. except Exception:
  6. long_description = None
  7. with open('requirements.txt') as f:
  8. requirements = f.readlines()
  9. setup(
  10. name='t5s',
  11. packages=find_packages(include=['t5s*']),
  12. version='2.0.7',
  13. description="T5 Summarisation Using Pytorch Lightning",
  14. license='MIT License',
  15. classifiers=[
  16. # How mature is this project? Common values are
  17. # 3 - Alpha
  18. # 4 - Beta
  19. # 5 - Production/Stable
  20. 'Development Status :: 4 - Beta',
  21. # Pick your license as you wish (should match "license" above)
  22. 'License :: OSI Approved :: MIT License',
  23. "Programming Language :: Python :: 3",
  24. "Operating System :: OS Independent",
  25. ],
  26. python_requires='>=3.6',
  27. install_requires=requirements,
  28. zip_safe=False,
  29. long_description=long_description,
  30. long_description_content_type='text/markdown',
  31. url="https://dagshub.com/gagan3012/summarization.git",
  32. entry_points={
  33. 'console_scripts': [
  34. 't5s=t5s.cli:main',
  35. ]
  36. },
  37. )
Tip!

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

Comments

Loading...