-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.11 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
from setuptools import setup, find_packages
from opengame.version import get_string
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='opengame',
packages=find_packages(where='.', exclude=(), include=('*', )),
author='stripe-python',
author_email='[email protected]',
maintainer='stripe-python',
maintainer_email='[email protected]',
license='MIT License',
install_requires=[
'pygame~=2.1.2',
'requests~=2.28.1',
'PyExecJS~=1.5.1',
'opencv-python~=3.4.11.45',
],
extras_require={
'record': ['pyaudio'],
'glwindow': ['PyOpenGL'],
'windows': ['pypiwin32', 'pythonnet'],
},
version=get_string(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
include_package_data=True,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/stripepython/opengame/',
)