-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·36 lines (30 loc) · 978 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
from docket import __version__
with open('README.md') as stream:
long_desc = stream.read()
setup(
name='docket',
version=__version__,
author='Shane R. Spencer',
author_email='[email protected]',
packages=['docket'],
url='https://github.com/IndieInfoTech/Docket',
license='MIT',
description='Information Docket System',
long_description=long_desc,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Environment :: No Input/Output (Daemon)',
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Database',
'Topic :: Communications',
],
)