-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
54 lines (45 loc) · 1.49 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
import os
from setuptools import setup, find_packages
def file_path(name):
return os.path.join(os.path.dirname(__file__), name)
def read(fname):
return open(file_path(fname)).read()
def desc():
info = read('README.rst')
try:
return info + '\n\n' + read('changelog.rst')
except IOError:
return info
setup(
name='Flask-Admin-Toggle-Control',
version='0.1.3',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
url='https://github.com/artemShelest/flask-admin-toggle-control',
license='MIT',
author='Artem Shelest',
author_email='artem.e.shelest@gmail.com',
description='Toggle control for Flask Admin inline form.',
long_description=desc(),
keywords=['flask-admin', 'inline', 'form', 'control', 'bool', 'boolean', 'toggle'],
install_requires=[
'flask-admin',
'wtforms',
'jinja2'
],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'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',
],
)