-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (34 loc) · 1.14 KB
/
setup.py
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
30
31
32
33
34
35
36
37
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='usfm',
version='0.1.1b1',
author='Baiju Muthukadan',
author_email='[email protected]',
description='USFM Parser and Converters',
long_description=read('README.rst'),
license='BSD',
url='https://github.com/tfbf/usfm',
packages=find_packages(),
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Markup',
],
install_requires=['setuptools',
'Jinja2',
'Parsley', # Requires Python 3 patch (not yet releases):
# https://github.com/python-parsley/parsley
],
entry_points={
'console_scripts': [
'usfm=usfm.main:run',
],
},
)