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.9 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
43
44
45
46
47
48
  1. from pkg_resources import parse_version
  2. from configparser import ConfigParser
  3. import setuptools
  4. assert parse_version(setuptools.__version__)>=parse_version('36.2')
  5. # note: all settings are in settings.ini; edit there, not here
  6. config = ConfigParser(delimiters=['='])
  7. config.read('settings.ini')
  8. cfg = config['DEFAULT']
  9. cfg_keys = 'version description keywords author author_email'.split()
  10. expected = cfg_keys + "lib_name user branch license status min_python audience language".split()
  11. for o in expected: assert o in cfg, "missing expected setting: {}".format(o)
  12. setup_cfg = {o:cfg[o] for o in cfg_keys}
  13. licenses = {
  14. 'apache2': ('Apache Software License 2.0','OSI Approved :: Apache Software License'),
  15. 'mit': ('MIT License', 'OSI Approved :: MIT License'),
  16. }
  17. statuses = [ '1 - Planning', '2 - Pre-Alpha', '3 - Alpha',
  18. '4 - Beta', '5 - Production/Stable', '6 - Mature', '7 - Inactive' ]
  19. py_versions = '2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8'.split()
  20. requirements = cfg.get('requirements','').split()
  21. lic = licenses[cfg['license']]
  22. min_python = cfg['min_python']
  23. setuptools.setup(
  24. name = cfg['lib_name'],
  25. license = lic[0],
  26. classifiers = [
  27. 'Development Status :: ' + statuses[int(cfg['status'])],
  28. 'Intended Audience :: ' + cfg['audience'].title(),
  29. 'License :: ' + lic[1],
  30. 'Natural Language :: ' + cfg['language'].title(),
  31. ] + ['Programming Language :: Python :: '+o for o in py_versions[py_versions.index(min_python):]],
  32. url = cfg['git_url'],
  33. packages = setuptools.find_packages(),
  34. include_package_data = True,
  35. install_requires = requirements,
  36. dependency_links = cfg.get('dep_links','').split(),
  37. python_requires = '>=' + cfg['min_python'],
  38. long_description = open('README.md').read(),
  39. long_description_content_type = 'text/markdown',
  40. zip_safe = False,
  41. entry_points = { 'console_scripts': cfg.get('console_scripts','').split() },
  42. **setup_cfg)
Tip!

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

Comments

Loading...