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.1 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
  1. import setuptools
  2. from os import path
  3. path_to_repo = path.abspath(path.dirname(__file__))
  4. with open(path.join(path_to_repo, 'readme.md'), encoding='utf-8') as f:
  5. long_description = f.read()
  6. setuptools.setup(
  7. name="imodels",
  8. version="0.2.8",
  9. author="Chandan Singh, Keyan Nasseri, Bin Yu, and others",
  10. author_email="chandan_singh@berkeley.edu",
  11. description="Implementations of various interpretable models",
  12. long_description=long_description,
  13. long_description_content_type="text/markdown",
  14. url="https://github.com/csinva/imodels",
  15. packages=setuptools.find_packages(exclude=['tests']),
  16. install_requires=[
  17. 'numpy',
  18. 'scipy',
  19. 'matplotlib',
  20. 'pandas',
  21. 'scikit-learn>=0.23.0', # 0.23+ only works on py3.6+
  22. 'cvxpy',
  23. 'cvxopt',
  24. 'mlxtend',
  25. 'pytest',
  26. 'pytest-cov',
  27. 'tqdm'
  28. ],
  29. python_requires='>=3.6',
  30. classifiers=[
  31. "Programming Language :: Python :: 3",
  32. "License :: OSI Approved :: MIT License",
  33. "Operating System :: OS Independent",
  34. ],
  35. )
Tip!

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

Comments

Loading...