mirror of
https://github.com/Xevion/truefile.git
synced 2025-12-07 03:16:55 -06:00
initial commit with most code completed
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal file
@@ -0,0 +1,22 @@
|
||||
import os
|
||||
import io
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
DEPENDENCIES = ['Click']
|
||||
EXCLUDE_FROM_PACKAGES = []
|
||||
CURDIR = os.path.dirname(__file__)
|
||||
|
||||
setup(
|
||||
name="truefile",
|
||||
version="1.0.0",
|
||||
author="Xevion",
|
||||
author_email="xevion@xevion.dev",
|
||||
description="",
|
||||
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
|
||||
include_package_data=True,
|
||||
entry_points='''
|
||||
[console_scripts]
|
||||
truefile=truefile.cli:cli
|
||||
''',
|
||||
install_requires=DEPENDENCIES,
|
||||
)
|
||||
Reference in New Issue
Block a user