-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 918 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
#============================================================================
# Name : setup.py
# Author : Alex James Wright
# Version : 0.1
# Copyright : MIT
# Description : PyPi setup file
#============================================================================
from setuptools import setup
setup(name='MessWithDevs',
version='0.2',
description='Swaps characters in a text file with indistinguishable doppelgangers to break code (damage is reversible!)',
url='https://github.com/AlexJamesWright/MessWithDevs',
author='Alex James Wright',
author_email='[email protected]',
license='MIT',
packages=['MessWithDevs'],
entry_points={'console_scripts': ['mwd=MessWithDevs.commandLine:main']},
include_package_data=True,
keywords='MessWithDevs',
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'])