-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (32 loc) · 1.01 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
import setuptools
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='superluminal',
version='0.0.3',
description='Ansible communication for humans',
# Author details
author='David Scott',
author_email='[email protected]',
# Choose your license
license='Apache v2',
packages=['superluminal'],
include_package_data=True,
install_requires=[
'gunicorn',
'oslo.config',
'falcon'
],
scripts=[
'bin/superluminal_inventory.py'
],
data_files=[
('/opt/superluminal', ['data/forwarder.py'])
]
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
#data_files=[('my_data', ['data/data_file'])],
)