-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
23 lines (21 loc) · 808 Bytes
/
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
from setuptools import setup, find_packages
from restcountries import __version__
setup(
name="python-restcountries",
version=__version__,
author="Robert Stein",
author_email="robert@blueshoe.de",
url="/~https://github.com/SteinRobert/python-restcountries",
download_url="/~https://github.com/SteinRobert/python-restcountries/tarball/{}".format(
__version__
),
packages=find_packages(),
dependencies=["future", "requests"],
description="Python API Wrapper for restcountries.com",
license="Unlicense",
keywords=["api", "wrapper", "country", "countries"],
install_requires=["requests"],
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=["Programming Language :: Python :: 3 :: Only"],
)