-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (22 loc) · 812 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
from distutils.core import setup
setup(
name='rightshift',
version='0.1.0',
packages=['rightshift'],
url='https://github.com/OOPMan/rightshift',
license='MIT',
author='Adam Jorgensen',
author_email='adam.jorgensen.za@gmail.com',
description='RightShift is a Python package for writing chained operations in a readable fashion.',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['future'],
tests_require=['hypothesis']
)