-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 882 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, find_packages
from ulis43 import __version__
install_requires = [
'pathlib2>=2.3.2',
'pygame>=1.9.4',
'pyyaml>=3.13'
]
setup(
name='ulis43',
version=__version__,
description='u lost in space bruh',
long_description='yup',
author='Jimmy Etienne, Yassine El Khadiri',
licence='WTFPL',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
packages=find_packages(exclude=['scripts', 'docs', 'tests']),
install_requires=install_requires,
entry_points={
'console_scripts': [
'ulis43-cli=ulis43.cli:run',
'ulis43=ulis43.gui:run'
]
}
)