-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
69 lines (66 loc) · 2.49 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
def getPackages():
return ['gofedinfra',
'gofedinfra.system.resources',
'gofedinfra.system.models.ecomanagement.fetchers',
'gofedinfra.system.models.ecomanagement.executors',
'gofedinfra.system.models.ecomanagement.watchers',
'gofedinfra.system.models.ecomanagement',
'gofedinfra.system.models.ecomanagement.workers',
'gofedinfra.system.models.ecosnapshots',
'gofedinfra.system.models',
'gofedinfra.system.models.snapshots',
'gofedinfra.system.models.graphs.datasets',
'gofedinfra.system.models.graphs',
'gofedinfra.system.plugins.specdataextractor',
'gofedinfra.system.plugins.goapidiff',
'gofedinfra.system.plugins.goprojectcontentmetadataextractor',
'gofedinfra.system.plugins.repositorydataextractor',
'gofedinfra.system.plugins.simpleetcdstorage',
'gofedinfra.system.plugins.simplefilestorage',
'gofedinfra.system.plugins',
'gofedinfra.system.plugins.distributionpackagebuildsextractor',
'gofedinfra.system.plugins.gosymbolsextractor',
'gofedinfra.system.plugins.distributiongosymbolsextractor',
'gofedinfra.system.core.meta',
'gofedinfra.system.core.factory',
'gofedinfra.system.core.functions',
'gofedinfra.system.core',
'gofedinfra.system.core.acts',
'gofedinfra.system',
'gofedinfra.system.acts.scandistributionbuild',
'gofedinfra.system.acts.scanupstreamrepository',
'gofedinfra.system.acts.specmodeldataprovider',
'gofedinfra.system.acts',
'gofedinfra.system.acts.artefactwriter',
'gofedinfra.system.acts.goexportedapidiff',
'gofedinfra.system.acts.gocodeinspection',
'gofedinfra.system.acts.scandistributionpackage',
'gofedinfra.system.acts.artefactreader',
'gofedinfra.system.config',
'gofedinfra.system.artefacts',
'gofedinfra.system.helpers.itemsetcache',
'gofedinfra.system.helpers',
'gofedinfra.system.helpers.artefactkeygenerator']
setup(
name='gofedinfra',
version='0.0.1',
description='Gofed infrastructure',
long_description=''.join(open('README.md').readlines()),
keywords='gofed,infra',
author='Jan Chaloupka',
author_email='[email protected]',
url='https://github.com/gofed/infra',
license='GPL',
packages=getPackages(),
install_requires=open('requirements.txt').read().splitlines(),
include_package_data=True
#package_data={
# "gofedinfra.system.acts.artefactreader": ["gofedinfra/system/acts/artefactreader/*.json"]
#},
#package_dir={
# "gofedinfra.system.acts.artefactreader": "gofedinfra/system/acts/artefactreader/fakedata"
#}
)