-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 889 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='omgmdsa',
version='0.1',
description='Support tools for OMG Model-Driven Specification Authoring',
long_description=readme(),
url='https://github.com/ObjectManagementGroup/MDSATools.git',
author='Object Management Group',
author_email='jason@omg.org',
license='MIT',
packages=find_packages(),
install_requires=[
'errutils @ git+https://github.com/jasonmccsmith/errutils.git',
'click'
],
entry_points = {
'console_scripts': [
'md2latex=omgmdsa.md2latex:main',
'makechangebartex=omgmdsa.makechangebartex:main',
'specsetup=omgmdsa.specsetup:main'
],
},
include_package_data=True,
zip_safe=False)