forked from fanstatic/js.deform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (47 loc) · 1.19 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
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
version = '0.9.8dev'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.txt')
+ '\n' +
read('js', 'deform', 'tests', 'test_deform.txt')
+ '\n' +
read('CHANGES.txt'))
setup(
name='js.deform',
version=version,
description="Fanstatic packaging of deform",
long_description=long_description,
classifiers=[],
keywords='',
author='Andreas Kaiser',
author_email='disko@binary-punks.com',
url='https://github.com/Kotti/js.deform',
license='BSD',
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
setup_requires=[],
install_requires=[
'deform',
'fanstatic',
'js.jquery',
'js.jquery_form',
'js.jquery_maskedinput',
'js.jquery_maskmoney',
'js.jquery_timepicker_addon',
'js.jqueryui',
'js.tinymce',
'setuptools',
],
entry_points={
'fanstatic.libraries': [
'deform = js.deform:library',
],
},
)