-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (42 loc) · 1.1 KB
/
setup.py
File metadata and controls
45 lines (42 loc) · 1.1 KB
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
40
41
42
43
44
45
import os
from distutils.core import setup
import sidewalk
setup(
name='sidewalk',
version=sidewalk.__version__,
url= 'http://www.blakerohde.com/projects/sidewalk',
author='Blake Rohde',
author_email='blake@blakerohde.com',
description='The Simple Activity Aggregator.',
long_description=open('README.rst').read() + '\n\n' +
open('HISTORY.rst').read(),
download_url='https://github.com/blakerohde/sidewalk/tarball/master',
scripts=[
'sidewalk/bin/sidewalk',
],
packages=[
'sidewalk',
'sidewalk.bin',
'sidewalk.conf',
'sidewalk.core',
'sidewalk.test',
],
package_data={
'' : [
'LICENSE',
],
},
license=open('LICENSE').read(),
classifiers=(
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Topic :: System :: Logging',
'Topic :: System :: Monitoring',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License (ISCL)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)