Initial checkin for dcc v2. Includes support for play/record/fabricate.
This commit is contained in:
parent
9a790b0b3a
commit
e78453d6bd
8 changed files with 166 additions and 0 deletions
30
setup.py
Normal file
30
setup.py
Normal file
|
@ -0,0 +1,30 @@
|
|||
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',
|
||||
],
|
||||
},
|
||||
zip_safe=False,
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue