-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (33 loc) · 1.09 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
from setuptools import setup, find_packages
import os
version = '4.0.4.post2.dev0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (read('README.rst')
+ '\n' +
read('js', 'select2', 'test_select2.js.txt')
+ '\n' +
read('CHANGES.txt'))
setup(name='js.select2',
version=version,
description="Fanstatic packaging of select2",
long_description=long_description,
classifiers=[],
keywords='',
author='Josip Delic',
author_email='[email protected]',
url="https://github.com/delijati/js.select2",
license='BSD',
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
install_requires=['fanstatic',
'setuptools',
'js.jquery',
],
entry_points={'fanstatic.libraries':
['select2 = js.select2:library',
],
},
)