forked from mikeboers/PyMemoize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (26 loc) · 931 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
import os
from distutils.core import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(
name='p1-memo',
version='1.0.4',
description='Forked from PyMemoize',
long_description='README.md',
long_description_content_type='text/markdown',
url='http://github.com/mikeboers/PyMemoize',
packages=['memoize'],
author='Dekoruma',
author_email='[email protected]',
license='BSD-3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)