-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·62 lines (37 loc) · 1.28 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
"""
See:
https://github.com/djangothon/django-react-comments
"""
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='django-react-comments',
version='0.0.3',
description='Django comment module using in reactJS',
long_description='Django comment module using in reactJS. Currently only stores to db and uses a dummy user and post.',
url='https://github.com/djangothon/django-react-comments',
authors='Kumar Anirudha','Puja Singh',
author_email='[email protected]','[email protected]',
license='MIT',
classifiers=[
'Framework :: Django',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='django,comment,module,djangothon,anistark,puja0708,reactJS',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=[ ],
extras_require={
},
package_data={
},
data_files=[ ],
entry_points={
},
)