132 lines
3.5 KiB
Python
132 lines
3.5 KiB
Python
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
import mayan
|
|
|
|
PACKAGE_NAME = 'mayan-edms'
|
|
PACKAGE_DIR = 'mayan'
|
|
|
|
if sys.argv[-1] == 'publish':
|
|
os.system('python setup.py sdist upload')
|
|
sys.exit()
|
|
|
|
|
|
def fullsplit(path, result=None):
|
|
"""
|
|
Split a pathname into components (the opposite of os.path.join) in a
|
|
platform-neutral way.
|
|
"""
|
|
if result is None:
|
|
result = []
|
|
head, tail = os.path.split(path)
|
|
if head == '':
|
|
return [tail] + result
|
|
if head == path:
|
|
return result
|
|
return fullsplit(head, [tail] + result)
|
|
|
|
|
|
def find_packages(directory):
|
|
# Compile the list of packages available, because distutils doesn't have
|
|
# an easy way to do this.
|
|
packages, data_files = [], []
|
|
root_dir = os.path.dirname(__file__)
|
|
if root_dir != '':
|
|
os.chdir(root_dir)
|
|
|
|
for dirpath, dirnames, filenames in os.walk(directory):
|
|
if not dirpath.startswith('mayan/media'):
|
|
# Ignore dirnames that start with '.'
|
|
if os.path.basename(dirpath).startswith('.'):
|
|
continue
|
|
if '__init__.py' in filenames:
|
|
packages.append('.'.join(fullsplit(dirpath)))
|
|
elif filenames:
|
|
data_files.append(
|
|
[dirpath, [os.path.join(dirpath, f) for f in filenames]]
|
|
)
|
|
|
|
return packages
|
|
|
|
install_requires = """
|
|
Django==1.8.11
|
|
Pillow==3.1.0
|
|
PyYAML==3.11
|
|
celery==3.1.19
|
|
cssmin==0.2.0
|
|
django-activity-stream==0.6.0
|
|
django-autoadmin==1.1.0
|
|
django-celery==3.1.17
|
|
django-colorful==1.1.0
|
|
django-compressor==2.0
|
|
django-cors-headers==1.1.0
|
|
django-filetransfers==0.1.0
|
|
django-formtools==1.0
|
|
django-pure-pagination==0.3.0
|
|
django-model-utils==2.4
|
|
django-mptt==0.8.0
|
|
django-qsstats-magic==0.7.2
|
|
django-rest-swagger==0.3.4
|
|
django-stronghold==0.2.7
|
|
django-suit==0.2.16
|
|
django-widget-tweaks==1.4.1
|
|
djangorestframework==3.3.2
|
|
djangorestframework-recursive==0.1.1
|
|
fusepy==2.0.2
|
|
pdfminer==20140328
|
|
pycountry==1.19
|
|
pytesseract==0.1.6
|
|
python-dateutil==2.4.2
|
|
python-gnupg==0.3.8
|
|
python-magic==0.4.10
|
|
pytz==2015.4
|
|
sh==1.11
|
|
""".split()
|
|
|
|
with open('README.rst') as f:
|
|
readme = f.read()
|
|
with open('HISTORY.rst') as f:
|
|
history = f.read()
|
|
with open('LICENSE') as f:
|
|
license = f.read()
|
|
|
|
setup(
|
|
author='Roberto Rosario',
|
|
author_email='roberto.rosario@mayan-edms.com',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Intended Audience :: Education',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Information Technology',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Natural Language :: English',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
|
'Topic :: Communications :: File Sharing',
|
|
],
|
|
description='Free Open Source Electronic Document Management System',
|
|
include_package_data=True,
|
|
install_requires=install_requires,
|
|
license=license,
|
|
long_description=readme + '\n\n' + history,
|
|
name=PACKAGE_NAME,
|
|
packages=find_packages(PACKAGE_DIR),
|
|
platforms=['any'],
|
|
scripts=['mayan/bin/mayan-edms.py'],
|
|
url='https://gitlab.com/mayan-edms/mayan-edms',
|
|
version=mayan.__version__,
|
|
zip_safe=False,
|
|
)
|