-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.13 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as f:
long_description = f.read()
setup(
name="country-database-py",
version="1.0",
author=["Sivakumar Mahalingam", "Sabarinath Velayudham"],
description="",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sivakumar-mahalingam/country-database/",
project_urls={
'Source': 'https://github.com/sivakumar-mahalingam/country-database',
'Tracker': 'https://github.com/sivakumar-mahalingam/country-database/issues',
},
python_requires=">=3.8",
install_requires=[
""
],
packages=find_packages(),
include_package_data=True,
classifiers=[
"Environment :: OS Independent",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Operating System :: OS Independent",
"Typing :: Typed",
],
keywords=[
"country"
]
)