-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (43 loc) · 1.38 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# -*- coding: utf-8 -*-
"""Setup for Drastic
"""
__copyright__ = "Copyright (C) 2016 University of Maryland"
__license__ = "GNU AFFERO GENERAL PUBLIC LICENSE, Version 3"
import inspect
import os
from distutils.core import setup
from setuptools import setup, find_packages
setup(
name='drastic',
version="1.1",
description='Drastic core library',
extras_require={},
long_description="Core library for Drastic development",
author='Archive Analytics',
maintainer_email='[email protected]',
license="GNU AFFERO GENERAL PUBLIC LICENSE, Version 3",
url='https://github.com/UMD-DRASTIC/drastic',
install_requires=[
"cassandra-driver==3.6.0", # 3.7.1 has an issue, wait for 3.8 to upgrade
"passlib==1.6.2",
"nose==1.3.6",
"blist==1.3.6",
"requests==2.7.0",
"gremlinpython==3.2.4",
"crcmod==1.7"
],
entry_points={
'console_scripts': [
"drastic-admin = drastic.cli:main"
],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: System :: Archiving"
],
)