forked from pescheckit/django-country-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (52 loc) · 1.77 KB
/
setup.py
File metadata and controls
56 lines (52 loc) · 1.77 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
"""
Setup configuration for the customersatisfactionmetrics package.
This script is used to handle the packaging and distribution of the
'customersatisfactionmetrics' package, including metadata, dependencies,
and other necessary package information.
"""
from setuptools import setup
# Using 'with' statement for safe file handling
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-country-kit',
version="0.0.5",
author='Pescheck IT',
author_email='devops@pescheck.io',
description='Countries for django',
long_description=long_description,
long_description_content_type='text/markdown',
url='http://github.com/pescheckit/django-country-kit',
packages=["django_country_kit"],
include_package_data=True,
install_requires=[
'Django>=3.0',
],
classifiers=[
"Development Status :: 4 - Beta",
"Natural Language :: English",
"Topic :: Utilities",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
],
keywords=[
'django',
'country',
],
license='MIT',
)