/ setup.cfg
setup.cfg
1 # SPDX-FileCopyrightText: 2021 Jeff Epler 2 # 3 # SPDX-License-Identifier: GPL-3.0-only 4 5 [metadata] 6 name = bulletind 7 author = Jeff Epler 8 author_email = jepler@gmail.com 9 description = Access IERS "Bulletin D" data 10 long_description = file: README.md 11 long_description_content_type = text/markdown 12 url = https://github.com/jepler/bulletind 13 classifiers = 14 Programming Language :: Python :: 3 15 Programming Language :: Python :: 3.9 16 Programming Language :: Python :: 3.10 17 Programming Language :: Python :: Implementation :: PyPy 18 Programming Language :: Python :: Implementation :: CPython 19 License :: OSI Approved :: GNU General Public License v3 (GPLv3) 20 Operating System :: OS Independent 21 22 [options] 23 package_dir = 24 =. 25 packages = bulletind 26 python_requires = >=3.9 27 install_requires = 28 beautifulsoup4 29 click 30 dataclasses-json 31 platformdirs 32 requests 33 34 [options.entry_points] 35 console_scripts = 36 bulletind = bulletind.__main__:cli 37 38 [options.extras_require] 39 dev = 40 build 41 mypy 42 twine 43 types-requests 44 types-beautifulsoup4 45 46 [options.package_data] 47 bulletind = 48 py.typed 49 data/*.json