-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 loc) · 1.38 KB
/
setup.py
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
from os.path import exists
from setuptools import setup
setup(
name="django-country-utils",
version="0.2.11",
author="Chaty",
author_email="[email protected]",
packages=[
"country.management",
"country.management.commands",
"country.fixtures",
"country.migrations",
"country",
"currency",
"currency.migrations",
"phonecode",
"phonecode.migrations",
],
include_package_data=True,
scripts=[],
url="https://github.com/okchaty/django-country",
license="MIT License",
description="Support for generic apps of country, currencies and phonecodes.",
long_description=open("README.md").read() if exists("README.md") else "",
long_description_content_type='text/markdown',
classifiers=[
"License :: OSI Approved :: MIT License",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
],
install_requires=["Django>=1.11", "Babel", "django-model-utils"],
zip_safe=False,
)