-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.24 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
import os
from setuptools import setup, find_packages
# from etc.get_git_version import get_version
def read(fname):
readme_file_path = os.path.join(os.path.dirname(__file__), fname)
if os.path.exists(readme_file_path) and os.path.isfile(readme_file_path):
readme_file = open(readme_file_path)
return readme_file.read()
else:
return "The SoftFIRE integration test"
packages = find_packages()
setup(
name="softfire-integration-test",
# version=get_version(),
version='0.0.1',
author="SoftFIRE",
author_email="[email protected]",
description="The SoftFIRE integration test",
license="Apache 2",
keywords="python experiment manager softfire integration test",
url="http://softfire.eu/",
packages=packages,
scripts=["softfire-integration-test", "softfire-testbed-connectivity-test"],
install_requires=[
'requests',
'PyYAML',
'simplejson'
],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.5",
"License :: OSI Approved :: Apache Software License"
]
)