-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (36 loc) · 1.33 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
import os
from codecs import open
from setuptools import setup, find_packages
repo_path = os.path.abspath(os.path.dirname(__file__))
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
with open(os.path.join(repo_path, 'requirements.txt')) as f:
requirements = f.read().splitlines()
setup(
name='django-intercoolerjs',
version='1.2.3.0',
url="https://github.com/brejoc/django-intercoolerjs",
description='Django wrapper for intercooler.js - AJAX With Attributes: There is no need to be complex.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Jochen Breuer',
author_email='[email protected]',
license='MIT',
keywords='django jquery staticfiles intercoolerjs'.split(),
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
],
packages=find_packages(),
package_data={'intercoolerjs': ['static/intercoolerjs/js//*']},
install_requires=requirements,
zip_safe=False,
)