-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
39 lines (34 loc) · 1.11 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
29
30
31
32
33
34
35
36
37
38
39
# Cashier setup.py script
#
# It doesn't depend on setuptools, but if setuptools is available it'll use
# some of its features, like package dependencies.
import os
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
base_dir = os.path.dirname(__file__)
setup_args = {
'name': 'cashier',
'version': '1.3',
'url': 'http://atmb4u.github.io/cashier',
'description': 'Caching for python functions',
'author': 'Anoop Thomas Mathew',
'author_email': '[email protected]',
'license': 'BSD',
'include_package_data': True,
'py_modules': ['cashier/__init__'],
'classifiers': [
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Environment :: Console',
'Topic :: Software Development :: Libraries :: Python Modules'
]
}
packages = [
"cashier",
]
from distutils.core import setup
setup(**setup_args)