-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.11 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.11 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
41
42
from __future__ import with_statement
from setuptools import setup, find_packages
def readme():
with open('Readme.md') as f:
return f.read()
def pip_requirements(fname='requirements.txt'):
reqs = []
with open(fname, 'r') as f:
for line in f:
line = line.strip()
if not line or line.startswith('#'):
continue
reqs.append(line)
return reqs
setup(
name="pytest_fun",
version=0.2,
description="Pytest Training",
long_description=readme(),
license='Apache License 2.0',
author="XXX",
author_email="xxx@dkrz.de",
url="https://github.com/neumannd/pytest_fun",
packages=find_packages(),
install_requires=pip_requirements(),
tests_require=['pytest'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Scientific/Engineering'
],
)