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