-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 953 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
24
25
26
27
28
29
30
from distutils.core import setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="rcoc",
package_data={"": ["*.csv"]},
version="1.1.16",
license="MIT",
description="RCOC - Random Country Or City name generator",
author="touhf",
author_email="tobytubar@gmail.com",
url="https://github.com/touhf/rcoc",
long_description=long_description,
long_description_content_type="text/markdown",
download_url="https://github.com/touhf/rcoc/archive/refs/tags/1.1.16.tar.gz",
keywords=["country", "city", "generator"],
install_requires=[],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)