-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (39 loc) · 1.39 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
48
import os
from setuptools import setup
from setuptools import find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="plywood",
version="2.1.0",
author="Colin T.A. Gray",
author_email="[email protected]",
url="https://github.com/colinta/plywood",
install_requires=['chomsky >= 2.0.0'],
python_requires='>3.0.0',
entry_points={
'console_scripts': [
'ply = plywood.__main__:run'
]
},
description="A template language grammar inspired by the Python code aesthetic",
long_description=read("README.rst"),
packages=find_packages(),
keywords="plywood template language",
platforms="any",
license="BSD",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
'Environment :: Console',
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Markup",
'Topic :: Internet',
],
)