-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·46 lines (44 loc) · 1.49 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
#!/usr/bin/env python
from setuptools import setup
readme = open('README.rst').read()
setup(
name='django-newsfeed',
version='0.8.8',
description="""A news curator and newsletter subscription package for django""",
long_description=readme,
long_description_content_type='text/markdown',
author='Maksudul Haque',
author_email='[email protected]',
url='https://github.com/saadmk11/django-newsfeed',
packages=[
'newsfeed',
],
include_package_data=True,
python_requires='>=3.6',
install_requires=[
'Django >= 2.2',
],
test_suite="runtests.runtests",
license="GNU Public License",
zip_safe=False,
keywords='django-newsfeed news curator newsletter subscription',
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
],
)