forked from peterbe/tornado-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (20 loc) · 715 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (20 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='tornado-utils',
version='1.1',
description='Utility scripts for a Tornado site',
long_description=read('README.md'),
author='Peter Bengtsson',
author_email='mail@peterbe.com',
url='http://github.com/peterbe/tornado-utils',
classifiers=[
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Topic :: Software Development :: Testing'
'Topic :: Software Development :: Build Tools'
],
)