Skip to content

Commit 8a9bd85

Browse files
committed
Added setup files.
1 parent 47556b2 commit 8a9bd85

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

setup.cfg

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[metadata]
2+
description-file = README.md
3+
4+
[bdist_wheel]
5+
universal = 1

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import os
2+
from setuptools import setup, find_packages
3+
setup(
4+
name = 'pgm',
5+
packages = find_packages(where="pgm"),
6+
package_dir = {'':'pgm'},
7+
version = '0.1.0',
8+
description = 'Math library for game programming in python. ',
9+
author = 'Alex Marinescu',
10+
author_email = 'ale632007@gmail.com',
11+
license='BSD 2-Clause',
12+
url = 'https://github.com/explosiveduck/pyGameMath',
13+
download_url = 'https://github.com/explosiveduck/pyGameMath/tarball/v0.1.0',
14+
install_requires=['six'],
15+
keywords = ['math', 'game', 'library'],
16+
classifiers = [
17+
'Development Status :: 0.1.0',
18+
'Intended Audience :: Developers',
19+
'Topic :: Libraries :: Graphics :: Mathematics :: Software Development',
20+
'License :: OSI Approved :: BSD 2-Clause "Simplified" or "FreeBSD" license (BSD-2-Clause)',
21+
22+
'Programming Language :: Python',
23+
'Programming Language :: Python :: 2.7',
24+
'Programming Language :: Python :: 3',
25+
'Programming Language :: Python :: 3.3',
26+
'Programming Language :: Python :: 3.4',
27+
'Programming Language :: Python :: 3.5',
28+
],
29+
)

0 commit comments

Comments
 (0)