-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (28 loc) · 1 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
""" -*- coding: utf-8 -*-
A distutils based setup module.
"""
from distutils.core import setup
setup(
name='fileasobj',
packages=['fileasobj'],
version='2.0.0',
description='Manage a file as a Python list.',
author='John Hazelwood',
author_email='[email protected]',
url='https://github.com/jhazelwo/python-fileasobj',
download_url='https://github.com/jhazelwo/python-fileasobj/tarball/2.0.0',
keywords=['python', 'file', 'fileasobj'],
license='MIT',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
)