Skip to content

Commit 4fda84c

Browse files
committed
Create setup.py
1 parent be4795e commit 4fda84c

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

dsaps/models.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import datetime
22
from functools import partial
3-
import os
43
import operator
54
import requests
65
import time

setup.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='DSpace API Python Scripts',
5+
version='1.0.0',
6+
description='',
7+
packages=find_packages(exclude=['tests']),
8+
author='Eric Hanson',
9+
author_email='ehanson@mit.edu',
10+
install_requires=[
11+
'requests',
12+
'structlog',
13+
'attr',
14+
'click',
15+
'lxml',
16+
],
17+
entry_points={
18+
'console_scripts': [
19+
'dsaps=dsaps.cli:main',
20+
]
21+
},
22+
python_requires='>=3.7.1',
23+
)

tests/test_models.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import os
2-
31
import attr
42
import pytest
53
import requests_mock

0 commit comments

Comments
 (0)