Spaces:
Sleeping
Sleeping
File size: 1,266 Bytes
c456c14 | 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 38 39 40 41 42 43 44 45 46 47 48 49 50 | import pathlib
from setuptools import setup, find_packages
PKG_NAME = "uvd"
VERSION = "0.0.1"
def _read_file(fname):
with pathlib.Path(fname).open() as fp:
return fp.read()
def _read_install_requires():
with pathlib.Path("requirements.txt").open() as fp:
return [
line.strip()
for line in fp
if line.strip() and not line.startswith("#")
]
setup(
name=PKG_NAME,
version=VERSION,
author=f"{PKG_NAME} Developers",
# url='http://github.com/',
description="research project",
long_description=_read_file("README.md"),
long_description_content_type="text/markdown",
keywords=["Deep Learning", "Reinforcement Learning"],
license="MIT License",
packages=find_packages(include=f"{PKG_NAME}.*"),
include_package_data=True,
zip_safe=False,
entry_points={
"console_scripts": [
# 'cmd_tool=mylib.subpkg.module:main',
]
},
install_requires=_read_install_requires(),
python_requires=">=3.9",
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: Console",
"Programming Language :: Python :: 3",
],
)
|