-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
60 lines (53 loc) · 1.88 KB
/
pyproject.toml
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
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=61.2", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["datagovindia"]
package-dir = {"" = "src"}
[project]
name = "datagovindia"
version = "1.0.2"
description = "Python API wrapper for Government of India Open Government Data (OGD) platform data.gov.in"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Aditya Karan Chhabra", email = "[email protected]" },
{ name = "Arijit Basu", email = "[email protected]" },
{ name = "Abhishek Arora" }
]
maintainers = [
{ name = "Aditya Karan Chhabra", email = "[email protected]" },
{ name = "Arijit Basu", email = "[email protected]" }
]
keywords = ["data.gov.in", "indian-government-data", "open-data-india", "public-datasets", "indian-datasets", "government-api", "india-statistics", "ogd-platform"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Database",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Operating System :: OS Independent"
]
dependencies = [
"requests",
"pandas",
"python-dateutil",
"click>=8.0.0",
"tenacity>=6.3.0"
]
[project.urls]
homepage = "https://pypi.org/project/datagovindia/"
repository = "https://github.com/addypy/datagovindia/"
[project.scripts]
datagovindia = "datagovindia.cli:cli"