File: setup.cfg

package info (click to toggle)
convertdate 2.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 472 kB
  • sloc: python: 4,440; makefile: 33; sh: 11
file content (52 lines) | stat: -rw-r--r-- 1,361 bytes parent folder | download
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
49
50
51
52
# This file is part of convertdate.
# http://github.com/fitnr/convertdate
# Licensed under the MIT license:
# http://opensource.org/licenses/MIT
# Copyright (c) 2022, fitnr <fitnr@fakeisthenewreal>
[metadata]
name = convertdate
version = attr: convertdate.__version__
description = Converts between Gregorian dates and other calendar systems
author = Neil Freeman
author_email = contact@fakeisthenewreal.org
url = https://github.com/fitnr/convertdate
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
keywords: calendar, date, time
classifiers =
    License :: OSI Approved :: MIT License
    Natural Language :: English
    Programming Language :: Python
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Topic :: Religion
    Topic :: Scientific/Engineering :: Astronomy
    Operating System :: OS Independent

[options]
zip_safe = True
python_requires = >= 3.7, <4
package_dir =
    =src
packages = find:
install_requires = 
	pymeeus>=0.3.13, <=1

[options.packages.find]
where = src

[options.extras_require]
tests =
	coverage
docs =
	sphinx
	sphinx_rtd_theme
    myst_parser

[options.entry_points]
console_scripts =
   censusgeocode = censusgeocode.__main__:main