-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
39 lines (31 loc) · 980 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
33
34
35
36
37
38
39
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import clime
setup(
name = 'clime',
version = clime.__version__,
description = 'Convert functions into multi-command program breezily.',
long_description = open('README.rst').read(),
author = 'Mosky',
url = 'http://clime.mosky.tw/',
author_email = '[email protected]',
license = 'MIT',
platforms = 'any',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = find_packages(),
entry_points = {
'console_scripts': [
'clime = clime.__main__:run'
]
}
)