-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 730 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 730 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
from setuptools import setup, find_namespace_packages
DEPENDENCIES = [
"anthill-common>=0.2.5"
]
setup(
name='anthill-game-controller',
package_data={
"anthill.game.controller": ["anthill/game/controller/sql", "anthill/game/controller/static"]
},
version='0.2.8',
description='Game servers hosting & matchmaking service for Anthill platform Edit Add topics',
author='desertkun',
license='MIT',
author_email='desertkun@gmail.com',
url='https://github.com/anthill-platform/anthill-game-controller',
namespace_packages=["anthill"],
include_package_data=True,
packages=find_namespace_packages(include=["anthill.*"]),
zip_safe=False,
install_requires=DEPENDENCIES
)