-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 999 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
35
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="climesync",
version="0.1.1",
author="OSU Open Source Lab",
author_email="[email protected]",
url="https://github.com/osuosl/climesync",
license="Apache Version 2.0",
description="Climesync - CLI Frontend for the OSUOSL TimeSync API",
long_description=read("README"),
keywords="timesync pymesync cli frontend",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7"
],
packages=find_packages(),
install_requires=[
"pymesync",
"docopt",
],
scripts=["climesync/climesync.py",
"climesync/util.py",
"climesync/commands.py"],
entry_points={
"console_scripts": [
"climesync = climesync:main"
]
},
)