forked from twitter-archive/cdk
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (27 loc) · 955 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (27 loc) · 955 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
# I wish there was a way to do this w/o having to put data files in
# package dir. Couldn't ever get data_files arg working correctly...
setup(
name='cdk',
version='0.0.3',
description='Courseware Developement Kit based on asciidoc and deck.js',
long_description=readme,
author='Simeon Franklin',
author_email='simeonf@gmail.com',
url='https://github.com/twitter-university/cdk',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
entry_points = {'console_scripts': ['cdk = cdk:main']},
install_requires=['docopt', 'pygments'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License"
]
)