forked from MeirKriheli/python-bidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (29 loc) · 1.04 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "python-bidi",
version = "0.3.4",
url = 'http://github.com/mksoft/python-bidi',
description = 'BiDi layout implementation in pure python',
long_description = read('README.rst') + read('CHANGELOG.rst') + read('TODO.rst'),
license = 'http://www.gnu.org/licenses/lgpl.html',
author = 'Meir Kriheli',
author_email = '[email protected]',
packages = find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
install_requires = ['setuptools'],
entry_points = {
'console_scripts': 'pybidi = bidi:main'
},
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Text Processing',
]
)