-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (37 loc) · 1.55 KB
/
setup.py
File metadata and controls
executable file
·40 lines (37 loc) · 1.55 KB
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
#!/usr/bin/env python3
# vim:set ff=unix expandtab ts=4 sw=4 fileencoding=utf-8:
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
def non_src_requirements():
with open("requirements.non_src") as f:
return [l.strip() for l in f.readlines()]
setup(name='testinfrastructure',
version='0.1',
#test_suite="example_package.tests",#http://pythonhosted.org/setuptools/setuptools.html#test
description='Infrastructure for IO-tests that need filesystem separation',
long_description=readme(),#avoid duplication
author='Markus Müller',
author_email='markus.mueller.1.g@googlemail.com',
packages=find_packages('src'), #find all packages (multifile modules) recursively
package_dir={'': 'src'},
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: POSIX :: Linux",
"Topic :: Education "
],
entry_points={
'console_scripts': [
'test_notebooks = testinfrastructure.test_notebooks:test_notebooks_cmd',
'make_installers = testinfrastructure.make_installers:make_installers_cmd'
]
},
include_package_data=True,
zip_safe=False,
install_requires=[ ] + non_src_requirements()
)