-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 780 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 780 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
from setuptools import setup
version_info = {}
exec(open("harrison/package_version.py").read(), version_info)
setup(
name="harrison",
version=version_info["__version__"],
author="Body Labs, Metabolize",
author_email="github@paulmelnikow.com",
description="Time a block of code",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/metabolize/harrison",
license="MIT",
packages=["harrison", "harrison/util"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)