-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (21 loc) · 691 Bytes
/
Copy pathsetup.py
File metadata and controls
21 lines (21 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='bracket_table',
version='0.1',
py_modules=['bracket_table'],
install_requires = ['markdown>=2.5'],
url='https://github.com/parryc/bracket_table',
packages=['bracket_table'],
license='MIT',
author='parryc',
author_email='parry@parryc.com',
keywords='interlinear leipzig glossing gloss markdown',
install_requires=['markdown>=2.5'],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
'Topic :: Text Processing :: Markup :: HTML'
]
)