-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (39 loc) · 1.16 KB
/
setup.py
File metadata and controls
42 lines (39 loc) · 1.16 KB
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
39
40
41
42
from setuptools import setup
from setuptools.command.build_ext import build_ext as _build_ext
class build_ext(_build_ext):
# Taken from http://stackoverflow.com/a/21621689/1064619
def finalize_options(self):
_build_ext.finalize_options(self)
# Prevent numpy from thinking it is still in its setup process:
__builtins__.__NUMPY_SETUP__ = False
import numpy
self.include_dirs.append(numpy.get_include())
setup(
name="Just lean forward",
version="0.1.2dev",
description="Get Lean Stats like throughput and cycle time out of Jira/FogBugz with ease",
author="Chris Young",
license="LICENSE.md",
author_email="chris@chrisyoung.org",
platforms=["Any"],
packages=['jlf_stats'],
include_package_data=True,
scripts=['bin/jlf'],
setup_requires=['numpy'],
install_requires=[
'BeautifulSoup==3.2.1',
'nose',
'mock',
'argparse==1.2.1',
'ipython==0.13.2',
'fogbugz',
'jira',
'openpyxl==1.6.2',
'pandas',
'python-dateutil==1.5',
'pytz==2013b',
'xlrd==0.9.2',
'xlwt==0.7.5',
'XlsxWriter'
]
)