-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.42 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
38
39
#!/usr/bin/env python
from distutils.core import setup
README_FILE = open('README.rst', 'rt')
try:
long_description = README_FILE.read()
finally:
README_FILE.close()
setup(name='Interlinears',
version='0.2',
packages=('interlinears',),
package_dir = {'': 'src',},
include_package_data=True,
zip_safe=False,
platforms=['any'],
description='Pretty-printing of linguistic interlinears',
author_email='[email protected]',
author='kaleissin',
long_description=long_description,
url='https://github.com/kaleissin/Interlinears',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)