-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
37 lines (34 loc) · 1.06 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup # Fallback to distutils.
NAME = 'robotframework_openafslibrary'
exec(open('OpenAFSLibrary/__version__.py').read()) # get VERSION
setup(
name=NAME,
version=VERSION,
description='Robot Framework test library for OpenAFS',
long_description=open('README.rst').read(),
author='Michael Meffie',
author_email='[email protected]',
url='https://github.com/openafs-contrib/robotframework-openafslibrary',
license='BSD',
packages=[
'OpenAFSLibrary',
'OpenAFSLibrary.keywords',
],
install_requires=[
'robotframework>=2.7.0',
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
],
)