-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 927 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 927 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
28
29
30
31
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="dacsspace",
url="https://github.com/RockefellerArchiveCenter/DACSspace",
description="Validate data in an ArchivesSpace instance against DACS requirements.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rockefeller Archive Center",
author_email="archive@rockarch.org",
version="0.1.1",
license='MIT',
packages=find_packages(),
entry_points={
'console_scripts': ['dacsspace=dacsspace.command_line:main'],
},
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
],
python_requires=">=3.7",
install_requires=[
"jsonschema",
"requests",
],
)