-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (28 loc) · 904 Bytes
/
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
#!/usr/bin/env python
# coding: utf-8
from distutils.core import setup
import io
long_description = io.open('README.md').read()
setup(
name='arglinker',
version='0.1.0',
author='Krisztián Fekete',
author_email='[email protected]',
description=(
'py.test like automatic fixture injection'
+ ' for unittest and derivatives'),
long_description=long_description,
url='https://github.com/krisztianfekete/arglinker',
keywords='unittest fixture injection',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
'License :: Public Domain',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
license='Unlicense',
py_modules=['arglinker'],
)