Skip to content
Permalink
2f448db884
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
41 lines (34 sloc) 801 Bytes
import os
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.1",
#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",
]
}
)