Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
"""
Setup file to install the codez
python setup.py install
python setup.py test
"""
from setuptools import setup, find_packages
requires = [
'markdown',
'jinja2',
"pyyaml",
"pygments",
"python-markdown-math",
"pytest-runner",
]
testRequires = [
"pytest",
"bs4",
]
setup(
name="remarkable",
author="Dan Goldsmith",
author_email="djgoldsmith@googlemail.com",
version="0.3.2",
#Dependencies
install_requires=requires,
tests_require=testRequires,
#Load the Library
packages=find_packages(),
package_data={"remarkable": ["templates"]},
#And scripts
entry_points={
"console_scripts":[
"DMC = remarkable.scripts.runDMC:main",
"runDMC = remarkable.scripts.runDMC:main",
"remarkable = remarkable.scripts.runDMC:main",
]
}
)