-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 782 Bytes
/
setup.py
File metadata and controls
23 lines (22 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
setup(
name="Timecard",
version="1.0.1",
packages=["timecard"],
url="http://github.com/selectel/timecard",
license="MIT",
author="Konstantin Enchant",
author_email="sirkonst@gmail.com",
description="Framework for rendering tables wih metric values",
long_description=__import__("timecard.timecard").__about__,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Natural Language :: Russian",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries",
],
)