-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (35 loc) · 1.24 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
# coding: utf-8
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
__version__ = None
exec(open('remotecv_multidir/_version.py').read())
setup(
name='remotecv_multidir',
version=__version__,
description="RemoteCV image loader from multiple local directories",
keywords='imaging face detection feature opencv multidir thumbor storage loader',
author='Benn Eichhorn',
author_email='[email protected]',
url='https://github.com/benneic/remotecv_multidir',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Graphics :: Presentation'],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
install_requires=[
'derpconf'
],
extras_require={
},
long_description=readme(),
)