-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
85 lines (78 loc) · 2.29 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
version = '2.0.15.dev0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.rst')
+ '\n' +
read('js', 'deform', 'tests', 'test_deform.rst')
+ '\n' +
read('CHANGES.rst'))
setup(
name='js.deform',
version=version,
description="Fanstatic packaging of deform",
long_description=long_description,
keywords='',
author='Fanstatic developers',
author_email='[email protected]',
url='https://github.com/fanstatic/js.deform',
license='BSD',
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Pyramid",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"License :: OSI Approved :: BSD License",
],
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
setup_requires=[],
install_requires=[
'deform >=2.0.11',
'fanstatic',
'js.jquery',
'js.jquery_form',
'js.jquery_maskedinput',
'js.jquery_maskmoney',
'js.jquery_sortable',
'js.jquery_timepicker_addon',
'js.jqueryui',
'js.modernizr',
'js.select2',
'js.tinymce',
'setuptools',
],
extras_require={
'testing': [
'pyramid',
'pyramid_chameleon',
'pytest >= 3.1',
'pytest-cov',
'pytest-flake8',
'setuptools-git',
'tox',
],
},
entry_points={
'fanstatic.libraries': [
'deform = js.deform:library',
],
},
)