mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
setup: close license, readme files
This commit is contained in:
9
setup.py
9
setup.py
@@ -1,5 +1,10 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
with open('LICENSE') as file:
|
||||||
|
license_text = file.read()
|
||||||
|
with open('README.rst') as file:
|
||||||
|
long_description = file.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="djrill",
|
name="djrill",
|
||||||
version="0.2.0",
|
version="0.2.0",
|
||||||
@@ -8,7 +13,7 @@ setup(
|
|||||||
author="Kenneth Love <kenneth@brack3t.com>, Chris Jones <chris@brack3t.com>",
|
author="Kenneth Love <kenneth@brack3t.com>, Chris Jones <chris@brack3t.com>",
|
||||||
author_email="kenneth@brack3t.com",
|
author_email="kenneth@brack3t.com",
|
||||||
url="https://github.com/brack3t/Djrill/",
|
url="https://github.com/brack3t/Djrill/",
|
||||||
license=open('LICENSE').read(),
|
license=license_text,
|
||||||
packages=["djrill"],
|
packages=["djrill"],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=["requests", "django"],
|
install_requires=["requests", "django"],
|
||||||
@@ -22,5 +27,5 @@ setup(
|
|||||||
"Framework :: Django",
|
"Framework :: Django",
|
||||||
"Environment :: Web Environment",
|
"Environment :: Web Environment",
|
||||||
],
|
],
|
||||||
long_description=open('README.rst').read(),
|
long_description=long_description,
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user