indiaset 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- indiaset-0.0.1/PKG-INFO +14 -0
- indiaset-0.0.1/README.md +6 -0
- indiaset-0.0.1/indiaset/__init__.py +1 -0
- indiaset-0.0.1/pyproject.toml +11 -0
indiaset-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: indiaset
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Clean, versioned Indian government datasets. Census, elections, RBI — one pip install away.
|
|
5
|
+
License: MIT
|
|
6
|
+
Requires-Python: >=3.9
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
\# indiaset
|
|
10
|
+
|
|
11
|
+
Clean, versioned Indian government datasets for pandas.
|
|
12
|
+
|
|
13
|
+
Coming soon: Census 2011, election results, RBI series.
|
|
14
|
+
|
indiaset-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "indiaset"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Clean, versioned Indian government datasets. Census, elections, RBI — one pip install away."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
requires-python = ">=3.9"
|