-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·84 lines (59 loc) · 2.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""Based on: https://github.com/pypa/sampleproject."""
from os import path
from setuptools import find_packages, setup
# Get the long description from the README file
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
long_description = f.read()
# Get the version from the VERSION.py file
with open(path.join(path.abspath(path.dirname(__file__)), 'VERSION')) as f:
version = f.read()
# Write the version from the VERSION.py file inside VERSION.py file inside pygin
open(path.join(path.join(path.abspath(path.dirname(__file__)), 'pygin'), 'VERSION.py'), 'w').write(version)
TESTS_REQUIRE = ['pylint', 'pytest', 'pytest-pylint']
INSTALL_REQUIRE = ['pygame', 'numpy']
setup(
name='pygin',
# Versions should comply with PEP440.
version=version,
description='Simple Python Balance engine.',
long_description=long_description,
url='https://github.com/CarlosMatheus/Pygin',
author='Aloysio, Carlos, Igor',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Games/Entertainment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='engine python pygame',
packages=find_packages(),
install_requires=INSTALL_REQUIRE,
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'test': TESTS_REQUIRE,
},
setup_requires=['pytest-runner'],
tests_require=TESTS_REQUIRE,
# If there are data files included in your packages that need to be
# installed, specify them here.
# for example: 'sample': ['package_data.dat']
package_data={},
# Although 'package_data' is the preferred approach, in some case you may
# need to place data files outside of your packages. See:
# http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa
# In this case, 'data_file' will be installed into '<sys.prefix>/my_data'
data_files=[],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
project_urls={
'Wiki': 'https://github.com/CarlosMatheus/Engine/wiki',
'Source': 'https://github.com/CarlosMatheus/Engine',
},
)