-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 692 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 692 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
from aodb import __version__
from setuptools import setup, find_packages
setup(
name="aodb",
version=__version__,
author="Regner Blok-Andersen",
author_email="regnerba@gmail.com",
description="CLI tool and library for converting the Albion Online exports to other formats.",
license="MIT",
keywords="albion online database assets data",
url="https://github.com/Regner/aodb",
packages=find_packages(),
entry_points={
'console_scripts': [
'aodb = aodb.cli:cli',
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
],
)