-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 790 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 790 Bytes
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
#! /usr/bin/env python
from setuptools import setup, find_packages
install_requires = [
'django-parsley',
'django-recaptcha',
'psycopg2',
'python-magic',
'Unipath',
'wheel==0.41.0',
'zipstream',
]
setup(
name='keeper',
version='1.0.0',
packages=find_packages(exclude=['tests']),
description='',
long_description='',
include_package_data=True,
install_requires=install_requires,
url='https://github.com/unt-libraries/keeper/',
license='BSD',
classifiers=[
'Natural Language :: English',
'Environment :: Web Environment',
'Framework :: Django :: 1.8',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
]
)