forked from starryrbs/django-comment-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 771 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (23 loc) · 771 Bytes
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
from setuptools import setup
readme = open('README.rst', encoding='utf-8').read()
setup(
name='django-comment-migrate',
version='0.1.6',
description="""An app that provides Django model comment migration """,
long_description=readme,
author='starryrbs',
author_email='1322096624@qq.com',
url='https://github.com/starryrbs/django-comment-migrate.git',
keywords='django-comment-migrate',
packages=['django_comment_migrate'],
include_package_data=True,
zip_safe=False,
license='MIT',
install_requires=['django>=2.2'],
python_requires='>=3.6',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)