mirror of
https://github.com/RGBCube/DML
synced 2025-07-26 23:27:43 +00:00
19 lines
489 B
Python
19 lines
489 B
Python
from pathlib import Path
|
|
|
|
from setuptools import setup
|
|
|
|
this_directory = Path(__file__).parent
|
|
long_description = (this_directory / "README.md").read_text()
|
|
|
|
setup(
|
|
name="dotted-ml",
|
|
description="Translate text to and from DML with ease.",
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url="https://github.com/RGBCube/dml",
|
|
version="1.0.1",
|
|
author="RGBCube",
|
|
py_modules=["dml"],
|
|
packages=["dml"],
|
|
license="MIT"
|
|
)
|