-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (31 loc) · 1.09 KB
/
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
26
27
28
29
30
31
32
33
34
from setuptools import setup, find_packages
with open('libreary/version.py') as f:
exec(f.read())
with open('requirements.txt') as f:
install_requires = f.readlines()
setup(
name='libreary',
version=VERSION,
description='Distributed Digital Object Archive System',
long_description='Distributed Digital Object Archive System',
url='https://github.com/LIBREary/libre-ary',
author='Ben Glick',
install_requires=install_requires,
author_email='[email protected]',
license='Apache 2.0',
download_url='https://github.com/LIBREary/libre-ary#{}'.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']
)