2025-04-07 02:19:25 -04:00
|
|
|
from setuptools import find_packages
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
PROJECT = 'dcc'
|
|
|
|
|
|
|
|
VERSION = '0.0.1'
|
|
|
|
|
|
|
|
long_description = ''
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name=PROJECT,
|
|
|
|
version=VERSION,
|
|
|
|
description='Doom Command Center',
|
|
|
|
long_description=long_description,
|
|
|
|
author='yrriban',
|
|
|
|
author_email='yrriban@gmail.com',
|
|
|
|
platforms=['Any'],
|
|
|
|
install_requires=['cliff'],
|
|
|
|
packages=find_packages(),
|
|
|
|
include_package_data=True,
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['dcc=dcc.main:main'],
|
|
|
|
'dcc': [
|
|
|
|
'play = dcc.play:Play',
|
|
|
|
'record = dcc.record:Record',
|
|
|
|
'fabricate = dcc.fabricate:Fabricate',
|
2025-04-13 17:24:31 -04:00
|
|
|
'put = dcc.put:Put',
|
2025-04-13 17:45:24 -04:00
|
|
|
'pb = dcc.pb:PB',
|
2025-04-16 02:55:14 -04:00
|
|
|
'ss = dcc.ss:SS',
|
2025-04-17 01:57:40 -04:00
|
|
|
'check = dcc.check:Check',
|
2025-04-18 02:45:34 -04:00
|
|
|
'extract = dcc.extract:Extract',
|
2025-04-19 23:05:38 -04:00
|
|
|
'fetch = dcc.fetch:Fetch',
|
2025-04-20 14:16:44 -04:00
|
|
|
'text = dcc.text:Text',
|
2025-04-07 02:19:25 -04:00
|
|
|
],
|
|
|
|
},
|
|
|
|
zip_safe=False,
|
|
|
|
)
|