-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 947 Bytes
/
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
from os.path import dirname, join
from setuptools import setup, find_packages
setup(
name='LitMath',
version='0.1.1',
url='https://github.com/wangyao1052/PyLitMath',
description='A simple 2D and 3D math library for Python.',
author='Hisin Wang',
author_email="wangyao1052@163.com",
maintainer='Hisin Wang',
maintainer_email='wangyao1052@163.com',
license='MIT',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
],
)