-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·48 lines (44 loc) · 1.45 KB
/
setup.py
File metadata and controls
executable file
·48 lines (44 loc) · 1.45 KB
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
47
48
#!/usr/bin/env python
# encoding: utf-8
from __future__ import absolute_import, division, print_function
from setuptools import setup
readme = open("README.rst").read()
setup(
name="django-tabular-export",
setup_requires=["setuptools_scm"],
use_scm_version=True,
description="""Simple spreadsheet exports from Django""",
long_description=readme,
author="Chris Adams",
author_email="cadams@loc.gov",
url="https://github.com/LibraryOfCongress/django-tabular-export",
packages=[
"tabular_export",
],
include_package_data=True,
install_requires=[
"Django",
"xlsxwriter",
],
test_suite="tests.run_tests.run_tests",
license="CC0",
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)