-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
59 lines (54 loc) · 2.02 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
49
50
51
52
53
54
55
56
57
58
59
import os
import sys
if sys.version_info < (2, 7):
print("Python 2.7.x is required.")
sys.exit(1)
try:
from setuptools import setup, find_packages
extra_setup = dict(
include_package_data=True,
zip_safe=True,
)
except ImportError:
from distutils.core import setup
extra_setup = {}
def find_packages(exclude=()):
return [w[0].replace('/', '.')
for w in os.walk('flatland')
if '__init__.py' in w[2]]
long_desc = open('README').read()
setup(name="flatland",
packages=find_packages(exclude=['tests.*', 'tests']),
author='Jason Kirtland',
author_email='[email protected]',
description='HTML form management and validation',
keywords='schema validation data web form forms roundtrip',
long_description=long_desc,
license='MIT License',
url='https://github.com/discorporate/flatland/',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries'],
use_scm_version={
'write_to': 'flatland/_version.py',
},
setup_requires=[
'setuptools_scm',
],
install_requires=[
'blinker',
],
**extra_setup)