-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (31 loc) · 1019 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
from setuptools import setup, find_packages
from pip.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session=False)
version = '1.2.0'
LONG_DESCRIPTION = """
=======================
Formy
=======================
Python Forms Library with Jinja2 Templates based on Valley
"""
setup(
name='formy',
version=version,
description="""Python Forms Library with Jinja2 Templates""",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment",
],
keywords='form,validations,schema,declarative',
author='Brian Jinwright',
author_email='[email protected]',
maintainer='Brian Jinwright',
packages=find_packages(),
url='https://github.com/capless/formy',
license='GNU GPL V3',
install_requires=[str(ir.req) for ir in install_reqs],
include_package_data=True,
zip_safe=False,
)