|
1 | 1 | """ |
2 | 2 | See: |
3 | | -https://github.com/anistark/django-react-comments/tree/puja |
| 3 | +https://github.com/djangothon/django-react-comments |
4 | 4 | """ |
5 | 5 |
|
6 | 6 | from setuptools import setup, find_packages |
|
12 | 12 | setup( |
13 | 13 | name='django-react-comments', |
14 | 14 |
|
15 | | - version='0.0.1', |
| 15 | + version='0.0.2', |
16 | 16 |
|
17 | | - description='a django project with the comment system implemented in reactJS', |
18 | | - long_description=long_description, |
| 17 | + description='Django comment module using in reactJS', |
| 18 | + long_description='Django comment module using in reactJS. Currently only stores to db and uses a dummy user and post.', |
19 | 19 |
|
20 | | - url='https://github.com/anistark/django-react-comments/tree/puja', |
| 20 | + url='https://github.com/djangothon/django-react-comments', |
21 | 21 |
|
22 | | - author=' ', |
23 | | - author_email=' ', |
| 22 | + authors=['Kumar Anirudha', 'Puja Singh'], |
| 23 | + author_email=['anirudhastark@yahoo.com','singhpuja0708@gmail.com'], |
24 | 24 |
|
25 | 25 | license='MIT', |
26 | 26 |
|
27 | 27 | classifiers=[ |
28 | | - 'Development Status :: 3 - Alpha', |
| 28 | + 'Development Status :: 1 - Alpha', |
29 | 29 |
|
30 | 30 | # Indicate who your project is intended for |
31 | 31 | 'Intended Audience :: Developers', |
|
37 | 37 | 'Programming Language :: Python :: 2.7', |
38 | 38 | ], |
39 | 39 |
|
40 | | - keywords='django commenting system in reactJS', |
| 40 | + keywords='django,comment,module,djangothon,anistark,puja0708,reactJS', |
41 | 41 |
|
42 | 42 |
|
43 | 43 | packages=find_packages(exclude=['contrib', 'docs', 'tests*']), |
|
0 commit comments