-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (33 loc) · 1.04 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
PATH = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PATH, 'README.md')) as fp:
DESC = fp.read()
setup(
name='django-inlineedit',
version='1.2.2',
description='Add inline editble fields to your templates',
long_description=DESC,
long_description_content_type="text/markdown",
keywords='django, forms, editing',
author='Pedro Tavares',
author_email='[email protected]',
url='https://github.com/ptav/django-inlineedit',
license='LICENSE',
packages=find_packages(),
include_package_data=True,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
],
install_requires=[
'django'
],
zip_safe=False
)