-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 1.03 KB
/
setup.py
File metadata and controls
31 lines (29 loc) · 1.03 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
from setuptools import setup, find_packages
with open('libreary-cli/version.py') as f:
exec(f.read())
setup(
name='libreary',
version=VERSION,
description='Distributed Digital Object Archive System',
long_description='Distributed Digital Object Archive System',
url='https://github.com/LIBREary/LIBREary-cli',
author='Ben Glick',
install_requires=install_requires,
author_email='glick@glick.cloud',
license='Apache 2.0',
download_url='https://github.com/LIBREary/LIBREary-cli#{}'.format(VERSION),
include_package_data=True,
packages=find_packages(),
classifiers=[
# Maturity
'Development Status :: 3 - Alpha',
# Intended audience
'Intended Audience :: Developers',
# Licence, must match with licence above
'License :: OSI Approved :: Apache Software License',
# Python versions supported
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords=['Archive', 'Distributed Systems']
)