forked from pycountry/pycountry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.79 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
45
46
47
48
49
50
# vim:fileencoding=utf-8
# Copyright -2014 (c) gocept gmbh & co. kg
# Copyright 2015- (c) Flying Circus Internet Operations GmbH
# See also LICENSE.txt
from io import open
from setuptools import find_packages, setup
setup(
name="pycountry",
version="22.3.6.dev0",
author="Christian Theune",
author_email="[email protected]",
description="ISO country, subdivision, language, currency and script "
"definitions and their translations",
long_description=(
open("README.rst", encoding="utf-8").read()
+ "\n"
+ open("HISTORY.txt", encoding="utf-8").read()
),
url="https://github.com/flyingcircusio/pycountry",
license="LGPL 2.1",
keywords="country subdivision language currency iso 3166 639 4217 "
"15924 3166-2",
classifiers=[
# See: https://pypi.python.org/pypi?:action=list_classifiers
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: "
"GNU Lesser General Public License v2 (LGPLv2)",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
],
python_requires=">=3.6, <4",
install_requires=["setuptools"], # pkg_resources
zip_safe=False,
packages=find_packages("src"),
include_package_data=True,
package_dir={"": "src"},
)