|
3 | 3 |
|
4 | 4 | setup(name='django-notifications-hq',
|
5 | 5 | version=__version__,
|
| 6 | + |
6 | 7 | description='GitHub notifications alike app for Django.',
|
| 8 | + |
7 | 9 | long_description=open('README.rst').read(),
|
| 10 | + |
8 | 11 | author='django-notifications team',
|
| 12 | + |
9 | 13 | author_email='yang@yangyubo.com',
|
| 14 | + |
10 | 15 | url='http://github.com/django-notifications/django-notifications',
|
| 16 | + |
11 | 17 | install_requires=[
|
12 | 18 | 'django>=1.4',
|
13 | 19 | 'django-model-utils>=2.0.3',
|
14 | 20 | 'six>=1.9.0',
|
15 | 21 | 'jsonfield>=1.0.3',
|
16 | 22 | ],
|
| 23 | + |
17 | 24 | test_requires=[
|
18 | 25 | 'django>=1.4',
|
19 | 26 | 'django-model-utils>=2.0.3',
|
20 | 27 | 'six>=1.9.0',
|
21 | 28 | 'jsonfield>=1.0.3',
|
22 | 29 | 'pytz'
|
23 | 30 | ],
|
| 31 | + |
24 | 32 | packages=['notifications',
|
25 | 33 | 'notifications.templatetags',
|
26 | 34 | 'notifications.migrations',
|
27 | 35 | 'notifications.south_migrations'
|
28 | 36 | ],
|
| 37 | + |
29 | 38 | package_data={'notifications': [
|
30 | 39 | 'templates/notifications/*.html']},
|
31 |
| - classifiers=['Development Status :: 5 - Production/Stable', |
32 |
| - 'Environment :: Web Environment', |
33 |
| - 'Framework :: Django', |
34 |
| - 'Intended Audience :: Developers', |
35 |
| - 'License :: OSI Approved :: BSD License', |
36 |
| - 'Operating System :: OS Independent', |
37 |
| - 'Programming Language :: Python', |
38 |
| - 'Topic :: Utilities'], |
| 40 | + |
| 41 | + classifiers=[ 'Development Status :: 5 - Production/Stable', |
| 42 | + 'Environment :: Web Environment', |
| 43 | + 'Framework :: Django', |
| 44 | + 'Intended Audience :: Developers', |
| 45 | + 'License :: OSI Approved :: BSD License', |
| 46 | + 'Operating System :: OS Independent', |
| 47 | + # Specify the Python versions you support here. In particular, ensure |
| 48 | + # that you indicate whether you support Python 2, Python 3 or both. |
| 49 | + 'Programming Language :: Python', |
| 50 | + 'Programming Language :: Python :: 2', |
| 51 | + 'Programming Language :: Python :: 2.6', |
| 52 | + 'Programming Language :: Python :: 2.7', |
| 53 | + 'Programming Language :: Python :: 3', |
| 54 | + 'Programming Language :: Python :: 3.2', |
| 55 | + 'Programming Language :: Python :: 3.3', |
| 56 | + 'Programming Language :: Python :: 3.4', |
| 57 | + 'Topic :: Utilities' |
| 58 | + ], |
| 59 | + |
| 60 | + keywords='django notifications github action event stream', |
| 61 | + |
| 62 | + license='MIT', |
39 | 63 | )
|
0 commit comments