-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·27 lines (25 loc) · 893 Bytes
/
setup.py
File metadata and controls
executable file
·27 lines (25 loc) · 893 Bytes
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
#
# ___ __
# ___ ___ ___ ___ / _/__ _/ /______ ___
#/ _ \/ _ \/ -_) _ \/ _/ _ `/ / __/ _ \/ _ \
#\___/ .__/\__/_//_/_/ \_,_/_/\__/\___/_//_/
# /_/
#
#This serves as an installer for openfalcon
#
from setuptools import setup, find_packages
# -e,--editable <path/url>
# Install a project in editable mode (i.e. setuptools "develop mode") from a local project path.
setup(
name='openfalcon',
version='0.0.1',
description='Falcon is a library which allows you to use the Cosmos library in a convenient way.',
author='Opengenus Foundation',
author_email='team@opengenus.org',
url='https://github.com/OpenGenus/falcon',
python_requires='>3.5.2',
install_requires=['argparse', 'gitpython', 'pygtrie'],
entry_points={'console_scripts': ['openfalcon=services.openfalcon:main']},
include_package_data=True,
packages = ['.']
)