forked from IndEcol/country_converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.62 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
from setuptools import setup
exec(open("country_converter/version.py").read())
setup(
name="country_converter",
description=(
"The country converter (coco) - "
"a Python package for converting country names "
"between different classifications schemes."
),
long_description=open("README.rst").read(),
license="GNU General Public License v3 (GPLv3)",
url="https://github.com/konstantinstadler/country_converter",
author="Konstantin Stadler",
author_email="[email protected]",
version=__version__, # noqa
packages=["country_converter"],
package_data={"country_converter": ["country_data.tsv", "../LICENSE"]},
entry_points={
"console_scripts": ["coco = country_converter.country_converter:main"]
},
install_requires=["pandas >= 1.0"],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
],
)