-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
50 lines (44 loc) · 1.34 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
49
50
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
import re
def load_reqs(filename):
with open(filename) as reqs_file:
return [
re.sub('==', '>=', line) for line in reqs_file.readlines()
if not re.match('\s*#', line)
]
requirements = load_reqs('requirements.txt')
test_requirements = load_reqs('requirements-test.txt')
setup(
name='guillotina_volto',
version=open('VERSION').read().strip(),
long_description=(open('README.rst').read() + '\n' +
open('CHANGELOG.rst').read()),
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
url='https://pypi.python.org/pypi/guillotina_volto',
license='BSD',
setup_requires=[
'pytest-runner',
],
zip_safe=True,
include_package_data=True,
packages=find_packages(),
install_requires=requirements,
tests_require=test_requirements,
extras_require={
'extras': [
'guillotina_elasticsearch',
'guillotina_linkintegrity'
]
},
entry_points={
'console_scripts': [
'initdb=guillotina_volto.scripts:initdb',
'deletedb=guillotina_volto.scripts:deletedb'],
}
)