-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 961 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
34
35
import os
from setuptools import setup
def read(*paths):
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='flyingrat',
version='0.1.0',
description='Simple mail server for local development',
long_description=read('README.rst'),
url='https://github.com/roam/flyingrat/',
author='Kevin Wetzels',
author_email='[email protected]',
license='BSD',
packages=['flyingrat'],
include_package_data=True,
install_requires=[
'Click'
],
entry_points='''
[console_scripts]
flyingrat=flyingrat.cli:cli
''',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
)