-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1019 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 1019 Bytes
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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
requires = ['setuptools']
try:
import argparse
except ImportError:
requires.append('argparse >= 1.2')
setup(name='clue_script',
version='0.3.1',
description='Easy utils for creating a script runner',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: WSGI",
],
license='BSD',
author='Rocky Burt',
author_email='[email protected]',
url='https://github.com/clueproject/clue_script',
keywords='web',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
test_suite="clue_script.tests",
entry_points="",
)