-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1.19 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
from setuptools import setup
from memorizeit import __version__
with open('README.md') as readme:
long_description = readme.read()
with open('requirements.txt') as required:
requirements = required.read()
setup(
name='memorizeit',
version=__version__,
author='Adrian Niec',
author_email='ethru@protonmail.com',
description=' Game for memory and focus training.',
long_description=long_description,
url='https://github.com/ethru/memorizeit',
license='MIT',
platforms=['any'],
install_requires=requirements,
python_requires='>=3.7',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Games/Entertainment',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
packages=['memorizeit'],
include_package_data=True,
entry_points={
'gui_scripts': [
'memorizeit = memorizeit.__main__:main'
],
},
)