-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (51 loc) · 1.9 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
# Copyright: © Exathink, LLC (2016) All Rights Reserved
# Unauthorized use or copying of this file and its contents, via any medium
# is strictly prohibited. The work product in this file is proprietary and
# confidential.
# Author: Krishna Kumar
from setuptools import setup
from os import path
import polaris.vcs.service
here = path.abspath(path.dirname(__file__))
setup(
# --------------------------------------------------------------------------------
name='polaris-vcs-service',
# -------------------------------------------------------------------------------
version=polaris.vcs.service.__version__,
# -------------------------------------------------------------------------------
# UNCOMMENT THE 'packages' line and define the Python 3 namespace packages for this package.
# This should specify a package for each prefix of your package name.
packages=[
'polaris',
'polaris.vcs',
'polaris.vcs.service',
'polaris.vcs.service.graphql',
'polaris.vcs.service.graphql.repository',
'polaris.vcs.service.graphql.vcs_connector',
'polaris.vcs.messaging',
'polaris.vcs.messaging.messages',
'polaris.vcs.messaging.subscribers',
'polaris.vcs.messaging.tasks',
'polaris.vcs.db',
'polaris.vcs.db.impl',
'polaris.vcs.integrations',
'polaris.vcs.integrations.atlassian',
'polaris.vcs.integrations.gitlab',
'polaris.vcs.integrations.github',
'polaris.vcs.integrations.azure'
],
url='',
license = 'Commercial',
author='Krishna Kumar',
author_email='kkumar@exathink.com',
description='',
long_description='',
classifiers=[
'Programming Language :: Python :: 3.9'
],
# Run time dependencies - we will assume pytest is dependency of all packages.
install_requires=[
'pytest'
]
)