This repository was archived by the owner on Oct 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.34 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.34 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('requirements.txt') as f:
install_requires = [line.strip() for line in f.readlines()]
with open('test-requirements.txt') as f:
test_requires = [line.strip() for line in f.readlines()]
setup(
name="hypothesis-ros",
version="1.0.0",
url="https://github.com/ros-testing/hypothesis-ros",
license='Apache License 2.0',
author="Florian Kromer",
author_email="florian.kromer@mailbox.org",
description="Data generators for Property Based Testing and Fuzzy Testing of ROS1 nodes.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=install_requires,
test_requires=test_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Hypothesis',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Testing'
],
)