forked from opensanctions/countrynames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.31 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
import os
from setuptools import setup, find_packages
path = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(path, "README.md"), "r") as f:
readme = f.read()
setup(
name="countrynames",
version="1.13.3",
description="A library to map country names to ISO codes.",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="names countries iso country",
author="Friedrich Lindenberg",
author_email="[email protected]",
url="http://github.com/occrp/countrynames",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
namespace_packages=[],
package_data={"": ["countrynames/data.yaml", "countrynames/py.typed"]},
include_package_data=True,
zip_safe=False,
test_suite="nose.collector",
install_requires=["normality", "python-Levenshtein", "pyyaml"],
extras_require={
"dev": ["mypy", "wheel", "twine", "pytest", "types-PyYAML"],
},
tests_require=[],
entry_points={},
)