-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (27 loc) · 774 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
28
29
30
31
32
from setuptools import setup
from setuptools import find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='xmra',
version='0.3.0',
description='Xonotic Map Repository Api',
long_description=readme,
author='Tyler Mulligan',
author_email='z@xnz.me',
url='https://github.com/z/xonotic-map-repository-api',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
entry_points={
'console_scripts': [
'xmra-add = bin.xmra:main',
'xmra-init = bin.setup_db:main',
'xmra-serve = bin.serve:main',
]
},
install_requires=required
)