-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·52 lines (46 loc) · 1.48 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
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
import os
from setuptools import setup
import version
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='envhealthdashboard',
version=version.getVersion(),
packages=['env_health_dashboard', 'env_health_dashboard_site', 'env_health_dashboard_site.settings'],
include_package_data=True,
author='Vito Paine',
author_email='[email protected]',
license='Proprietary to Shutterfly, Inc',
url='https://ignite.shutterfly.com/docs/DOC-5301',
test_suite='nose.collector',
tests_require=[
'nose',
'mock',
'unittest-xml-reporting',
'django-nose',
],
setup_requires=['nose>=1.0', 'pep8>=1.3'],
install_requires=[
'django',
'django-jenkins',
'django-bootstrap3',
'jira-python',
'six',
'python-dateutil',
'jenkinsapi',
'croniter',
'pep8',
'mock',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content', ],)