-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
29 lines (28 loc) · 853 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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup
setup(
name='lys',
version='1.0',
description='Simple HTML templating for Python',
long_description=open('README.rst').read(),
url='http://github.com/mdamien/lys',
author='Damien MARIÉ',
author_email='[email protected]',
test_suite='nose.collector',
tests_require=['nose'],
license='MIT',
install_requires=["beautifulsoup4", 'lxml'] + (
["future"] if sys.version_info < (3,) else []
),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
packages=['lys'],
zip_safe=False
)