File size: 356 Bytes
9665c2c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from setuptools import setup, find_packages

setup(
    name='maploc',
    version='0.0.0',
    packages=find_packages(),
    python_requires='>=3.8',
    author='Paul-Edouard Sarlin',
    long_description_content_type="text/markdown",
    classifiers=[
        "Programming Language :: Python :: 3",
        "Operating System :: OS Independent",
    ],
)