forked from CowboyTim/python-storable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 668 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'storable',
version = '0.1.0',
description = 'Python Perl Storable module',
author = 'CowboyTim',
author_email = 'aardbeiplantje@gmail.com',
url = 'http://github.com/CowboyTim/python-storable',
license = 'LICENSE.txt',
py_modules = ['storable'],
long_description = open('README.txt').read(),
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Perl',
'Programming Language :: Python',
]
)