forked from mrq/DL-Art-School
35 lines
913 B
Python
35 lines
913 B
Python
|
import setuptools
|
||
|
|
||
|
with open("README.old.md", "r", encoding="utf-8") as fh:
|
||
|
long_description = fh.read()
|
||
|
|
||
|
# kludge
|
||
|
packages = setuptools.find_packages()
|
||
|
for i in range(len(packages)):
|
||
|
packages[i] = packages[i].replace("codes", "dlas")
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="DL-Art-School",
|
||
|
packages=packages,
|
||
|
package_dir={
|
||
|
"dlas": "./codes"
|
||
|
},
|
||
|
version="0.0.1",
|
||
|
author="James Betker",
|
||
|
author_email="james@adamant.ai",
|
||
|
description="",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://git.ecker.tech/mrq/DL-Art-School",
|
||
|
project_urls={},
|
||
|
scripts=[],
|
||
|
include_package_data=True,
|
||
|
install_requires=[],
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: Apache Software License",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
python_requires=">=3.6",
|
||
|
)
|