24 lines
845 B
Python
24 lines
845 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup,find_packages
|
|
from ChaChaIPToCountryDaemon import __version__ as ChaChaIPToCountryDaemon_Version
|
|
|
|
with open("./README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name='ChaChaIPToCountryDaemon',
|
|
version=ChaChaIPToCountryDaemon_Version,
|
|
description='An HTTP/REST IP2Country Daemon using country-ip-blocks database.',
|
|
author='Clement CHASTANIER',
|
|
author_email='clement.chastanier@gmail.com',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
url='https://chacha.ddns.net/gitea/chacha/ChaChaIPToCountryDaemon',
|
|
packages=find_packages(),
|
|
install_requires=["tornado","gitpython","netaddr","aiofiles","pycountry","dnspython","asyncstdlib"],
|
|
license="CC BY-NC-SA 4.0",
|
|
python_requires='>=3.8',
|
|
),
|
|
|