Skip to content
Permalink
db01137b9f
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
37 lines (33 sloc) 783 Bytes
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",
]
}
)