-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (37 loc) · 1.12 KB
/
setup.py
File metadata and controls
42 lines (37 loc) · 1.12 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
import os
import sys
from setuptools import setup
from setuptools.command.install import install
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
VERSION = '3.3.1'
setup(
name='onespacemedia-server-management',
version=VERSION,
packages=[
'fabvenv',
'server_management',
'server_management.management',
'server_management.management.commands',
],
include_package_data=True,
description='A set of server management tools used by Onespacemedia.',
url='https://github.com/onespacemedia/server-management/',
author='James Foley, Daniel Samuels, Aidan Currah',
author_email='developers@onespacemedia.com',
python_requires='>=3',
install_requires=['django', 'fabric3', 'requests'],
extras_require={
'testing': [
'astroid==1.5.3',
'coveralls',
'pytest',
'pytest-cov',
'pytest-django',
'pylint==1.7.5',
'pylint-django==0.7.2',
'pylint-mccabe==0.1.3',
'isort==4.2.15',
]
}
)