-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (44 loc) · 1.69 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
"""Setup.py for Space Bots"""
import os
import glob
from setuptools import setup, find_packages
readme = open('README.md').read()
# Data and Example Files
def get_files(dir_name):
"""Simple directory walker"""
return [(os.path.join('.', d), [os.path.join(d, f) for f in files]) for d, _, files in os.walk(dir_name)]
setup(
name='space_bots',
# use_scm_version=True,
version='0.1.3',
description='An AutoChess (Battler) where you compete with Space Mining Robots',
long_description=readme,
long_description_content_type='text/markdown',
author='SuperCowPowers LLC',
author_email='[email protected]',
url='https://github.com/SuperCowPowers/sagemaker_sandbox',
packages=find_packages('src'),
package_dir={"": "src"},
py_modules=[os.path.splitext(os.path.basename(path))[0] for path in glob.glob("src/*.py")],
include_package_data=True,
data_files=get_files('data') + get_files('examples'),
install_requires=[
'pygame',
],
license='Apache License 2.0',
keywords='AutoChess, Battler, Python, PyGame',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
],
setup_requires=["setuptools_scm", "setuptools"]
)