-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.48 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
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
import linguafilter
def get_readme_text():
with open('README.rst') as f:
return f.read()
setup(
name = 'linguafilter',
packages = find_packages(),
install_requires = ['panflute'],
version = linguafilter.VERSION,
description = 'A pandoc filter adding support for various linguistics constructs',
long_description = get_readme_text(),
license = 'GPLv3',
author = 'Ben Weedon',
author_email = '[email protected]',
url = 'https://github.com/benweedon/linguafilter',
keywords = ['language', 'linguistics', 'pandoc', 'filter', 'conlang', 'conlangs'],
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Plugins',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Other/Nonlisted Topic',
],
entry_points = {
'console_scripts': [
'linguafilter = linguafilter.main:main',
],
},
)