This repository was archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.41 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.41 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
from setuptools import setup
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
] + [
('Programming Language :: Python :: %s' % x) for x in '3 3.9'.split()
]
with open('README.rst') as read_me:
long_description = read_me.read()
setup(
name='nimoy-framework',
version='1.1.1',
description='A testing and specification framework for Python 3, heavily inspired by the Spock Framework',
long_description=long_description,
url='https://github.com/browncoat-ninjas/nimoy',
license='Apache License',
platforms=['unix', 'linux', 'osx'],
author='Noam Tenne, Yoav Luft',
author_email='noam@10ne.org',
entry_points={'console_scripts': ['nimoy = nimoy.main:main']},
classifiers=classifiers,
keywords="test unittest specification",
packages=['nimoy', 'nimoy.assertions', 'nimoy.ast_tools', 'nimoy.context', 'nimoy.runner', 'nimoy.compare'],
install_requires=['pyhamcrest==2.0.2', 'urllib3==1.26.5', 'astor==0.8.1'],
)