Skip to content

Commit

Permalink
Merge 88a7fce into 41c1342
Browse files Browse the repository at this point in the history
  • Loading branch information
francoisfreitag committed Aug 16, 2022
2 parents 41c1342 + 88a7fce commit c95b1cb
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 52 deletions.
48 changes: 46 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,54 @@
[metadata]
name = django-scheduler
version = 0.9.6
description = A calendaring app for Django.
long_description = file: README.md
long_description_content_type = text/markdown
author = Leonardo Lazzaro
author_email = lazzaroleonardo@gmail.com
url = https://github.com/llazzaro/django-scheduler
license = BSD
license_file = LICENSE.txt
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Utilities

[options]
include_package_data = True
zip_safe = False
python_requires = >=3.7
install_requires=
Django>=2.2
python-dateutil>=2.1
pytz>=2013.9
icalendar>=3.8.4
packages =
schedule
schedule.feeds
schedule.models
schedule.migrations
schedule.templatetags


[flake8]
ignore =
W503
E501

[metadata]
license_file = LICENSE.txt

[isort]
combine_as_imports = true
Expand Down
51 changes: 1 addition & 50 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,52 +1,3 @@
#!/usr/bin/env python3
from setuptools import setup

with open("README.md") as fp:
long_description = fp.read()

setup(
name="django-scheduler",
version="0.9.6",
description="A calendaring app for Django.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Leonardo Lazzaro",
author_email="lazzaroleonardo@gmail.com",
url="https://github.com/llazzaro/django-scheduler",
packages=[
"schedule",
"schedule.feeds",
"schedule.models",
"schedule.migrations",
"schedule.templatetags",
],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Utilities",
],
python_requires=">=3.6",
install_requires=[
"Django>=2.2",
"python-dateutil>=2.1",
"pytz>=2013.9",
"icalendar>=3.8.4",
],
license="BSD",
test_suite="runtests.runtests",
)
setup()

0 comments on commit c95b1cb

Please sign in to comment.