-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
def _get_requirements(file_name):
requirements = []
with open(file_name) as fin:
for line in fin:
if '#' not in line:
requirements.append(line.strip())
return requirements
REQUIREMENTS = _get_requirements('requirements.txt')
REQUIREMENTS_DEV = _get_requirements('requirements.dev.txt')
setup(
name='django-documents-tools',
author='pik-software',
author_email='[email protected]',
version='1.1.4',
license='BSD-3-Clause',
url='https://github.com/pik-software/documents-tools',
install_requires=REQUIREMENTS,
description='Toolset to work with documents and snapshots',
packages=find_packages(exclude=['tests*']),
extras_require={'dev': REQUIREMENTS_DEV},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython'
],
zip_safe=False,
include_package_data=True
)