forked from jwestgard/preserve
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
25 lines (24 loc) · 850 Bytes
/
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
from setuptools import find_packages, setup
setup(
name='preserve',
version='1.1.0',
description='Command-line digital preservation utilities.',
author='Joshua A. Westgard',
author_email="[email protected]",
platforms=["any"],
license="BSD",
url="https://github.com/umd-lib/preserve",
packages=find_packages(),
entry_points={
'console_scripts': ['preserve=preserve.__main__:main',
'preserve.batch=preserve.batch.__main__:main',
'partition=partition.__main__:main',
'bag=bag.__main__:main']
},
install_requires=[i.strip() for i in open("requirements.txt").readlines()],
python_requires='>=3.7',
extras_require={ # Optional
'dev': ['pycodestyle', 'isort'],
'test': ['pytest'],
}
)