-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
38 lines (35 loc) · 1.23 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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as fh:
readme = fh.read()
setup(
name="django-calendardate",
version="0.1.4",
description="A calendar model with date metadata for querying against.",
long_description=readme,
author="Jack Linke",
author_email="[email protected]",
url="http://github.com/OmenApps/django-calendardate/",
packages=find_packages(),
package_data={
"django_calendardate": [],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Office/Business :: Scheduling",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
],
)