-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (67 loc) · 2.22 KB
/
Copy pathsetup.py
File metadata and controls
71 lines (67 loc) · 2.22 KB
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
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup, find_packages
VERSION = "2.9.0"
# Read requirements
with open("requirements.txt") as f:
requirements = [
line.strip() for line in f if line.strip() and not line.startswith("#")
]
# Development dependencies
dev_requirements = [
"pytest>=8.0.0",
"pytest-django>=4.7.0",
"pytest-cov>=4.1.0",
"black>=24.2.0",
"coverage>=7.4.0",
]
setup(
name="uzbekistan",
version=VERSION,
description="Comprehensive Django package providing complete database of Uzbekistan's Regions, Districts & Quarters with multi-language support including Latin, Cyrillic, and Russian versions.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Jakhongir Ganiev",
author_email="ganiyevuz@gmail.com",
url="https://github.com/ganiyevuz/uzbekistan",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
extras_require={
"dev": dev_requirements,
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
python_requires=">=3.9",
keywords=[
"django",
"uzbekistan",
"regions",
"districts",
"villages",
"api",
"multilingual",
"geography",
"administrative",
"divisions",
],
project_urls={
"Documentation": "https://github.com/ganiyevuz/uzbekistan",
"Source": "https://github.com/ganiyevuz/uzbekistan",
"Tracker": "https://github.com/ganiyevuz/uzbekistan/issues",
},
)