-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (31 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
version = '1.0'
setup(name='shitty-autoreply',
version=version,
description="Irritate people by getting their names wrong",
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Framework :: Paste',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords='',
author='Rob Zimmerman',
author_email='rmzimmerman@gmail.com',
url='https://github.com/rzimmerman/shitty-autoreply',
license='MIT License',
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': ['wrong-name = shitty_autoreply.bin.wrong:main']
}
)