forked from petarjov/acme-data-generation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 785 Bytes
/
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
import os
from setuptools import find_namespace_packages, setup
with open(os.path.join(os.path.dirname(__file__), "VERSION")) as version:
VERSION = version.read()
setup(
name="acme-data-generator",
version=VERSION,
packages=find_namespace_packages(),
include_package_data=True,
license="MIT",
description="Python application for generating fake airport data",
author="Diego Quintana",
author_email="[email protected]",
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
],
py_modules=["acme_data_generation"],
entry_points='''
[console_scripts]
airbase-gen=acme_data_generation.cli:cli
''',
)