25 lines
643 B
Python
25 lines
643 B
Python
from setuptools import setup
|
|
|
|
setup()
|
|
# import os
|
|
# from setuptools import find_packages
|
|
# from distutils.core import setup
|
|
|
|
# import setuptools
|
|
|
|
# # User-friendly description from README.md
|
|
# current_directory = os.path.dirname(os.path.abspath(__file__))
|
|
# try:
|
|
# with open(os.path.join(current_directory, "README.md"), encoding="utf-8") as f:
|
|
# long_description = f.read()
|
|
# except Exception:
|
|
# long_description = ""
|
|
|
|
# setup(
|
|
# name="download",
|
|
# # packages=["argparser", "functions"],
|
|
# version="1.5.0",
|
|
# scripts=["download.py"],
|
|
# # entry_points={"console_scripts": ["download = download:main"]},
|
|
# )
|