-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1010 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 1010 Bytes
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
from setuptools import setup, find_packages
import os
# Read the contents of README file
with open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r') as f:
long_description = f.read()
setup(
name="geodb-finder",
version="0.2.1",
author="Gert-jan Poortman",
author_email="info@esocoding.dev",
description="A timezone and geolocation database finder.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://www.esocoding.dev",
packages=find_packages(),
include_package_data=True,
package_data={
'geodb_finder': ['data/*.db'],
},
install_requires=[
'aiosqlite>=0.21.0',
],
extras_require={
'dev': [
'pytest>=8.3.4',
'wheel>=0.45.1',
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)