-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1007 Bytes
/
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
from setuptools import setup, find_packages
import os
with open('README.rst', encoding='utf-8') as f:
readme = f.read()
with open('spenx/version.py') as f:
version = f.readline().strip()[15:-1]
setup(
name='spenx',
version=version,
description='Python 3 template parser to generate HTML from a pug/jade like syntax',
long_description=readme,
url='https://github.com/ducent/spenx',
author='Julien LEICHER',
license='GPL-3.0',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup',
],
install_requires=[
'Arpeggio~=1.9.0',
],
extras_require={
'test': [
'nose~=1.3.7',
'sure~=1.4.11',
'coverage~=4.5.1',
'Jinja2~=2.10.1',
'Mako~=1.0.8',
],
},
)