1
Fork 0
mirror of https://github.com/RGBCube/DML synced 2025-07-27 07:37:46 +00:00

Initial Commit

This commit is contained in:
RGBCube 2022-03-19 22:15:26 +03:00 committed by GitHub
parent 66739939c2
commit 1e815a2dc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 243 additions and 1 deletions

18
setup.py Normal file
View file

@ -0,0 +1,18 @@
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.0",
author="RGBCube",
py_modules=["dml"],
license="MIT"
)