-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (35 loc) · 1.17 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
# -*- 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) or re.match('-e', line) or re.match('-r', line))
]
requirements = load_reqs('requirements.txt')
test_requirements = load_reqs('requirements-test.txt')
setup(
name='guillotina_numpy',
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://github.com/guillotinaweb/guillotina_numpy.git',
license='BSD',
author="Ramon Navarro Bosch",
author_email="[email protected]",
setup_requires=[
'pytest-runner',
],
zip_safe=True,
include_package_data=True,
packages=find_packages(),
install_requires=requirements,
tests_require=test_requirements
)