-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 882 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except:
from distutils.core import setup
readme = open('README.rst').read()
setup(
name='calldules',
version='1.0.1',
url='https://github.com/Ivoz/calldules/',
license='MIT',
author='Matthew Iversen',
author_email='[email protected]',
description='Making modules callable, for not very good reasons.',
long_description=readme,
py_modules=['calldules'],
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Utilities'
],
)