-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 980 Bytes
/
setup.py
File metadata and controls
32 lines (31 loc) · 980 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
import os
from setuptools import setup, find_packages
setup(
name='schedule',
version='0.1.0',
author='German Saturday School Boston',
author_email='librarygssb@gmail.com',
description='Post library schedule into Google Calendar',
keywords = "console tools",
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent'],
url='http://github.com/gssblib/schedule',
license='BSD',
packages=find_packages('src'),
package_dir = {'': 'src'},
install_requires=[
'gdata',
'setuptools',
],
entry_points = dict(console_scripts=[
'post-schedule = schedule.schedule:post_schedule',
]),
include_package_data = True,
zip_safe = False,
)