-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 768 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (27 loc) · 768 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
# Manually extract the __about__
about = {}
with open('pyprof_timer/__about__.py') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
author=about['__author__'],
author_email=about['__email__'],
maintainer=about['__author__'],
maintainer_email=about['__email__'],
keywords='Profiling, Timer, Python',
description=about['__doc__'],
license=about['__license__'],
long_description=about['__doc__'],
packages=find_packages(exclude=['tests']),
url=about['__uri__'],
install_requires=[
'monotonic>=1.3',
'six>=1.10.0',
'tree-format==0.1.1',
],
)