-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 785 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 785 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
26
27
import codecs
import os
import re
from setuptools import setup
install_requires = ['dataverse-client-python']
setup(
name = 'dataverse-reports',
version='1.4.0',
url = 'https://www.tdl.org/',
author = 'Nicholas Woodward',
author_email = 'njw@austin.utexas.edu',
license = 'MIT',
packages = ['dataverse-reports'],
install_requires = install_requires,
description = 'Generate and email statistical reports for content stored in Dataverse - https://dataverse.org/',
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Programming Language :: Python :: 3",
],
test_suite = 'test',
)