-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (32 loc) · 1 KB
/
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
36
37
38
import os
from setuptools import setup
import timer
github_url = 'https://github.com/gabegaster/python-timer'
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.readlines()
# read in the description from README
long_description = "\n".join(read("README.md"))
install_requires = []
setup(
name="python-timer",
version=timer.VERSION,
description=("A wrapper for long-running tasks that iterate over many things, "
"printing friendly 'percentage done' messages to standard error."),
long_description=long_description,
url=github_url,
download_url="%s/archives/master" % github_url,
author='Gabe Gaster',
author_email='[email protected]',
license='MIT',
packages=[
'timer',
],
install_requires=install_requires,
zip_safe=False,
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)