-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
32 lines (28 loc) · 989 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
30
31
32
from setuptools import setup
with open('README') as f:
long_description = ''.join(f.readlines())
setup(
name='bresenham',
version='0.2.1',
description="An implementation of Bresenham's line drawing algorithm",
long_description=long_description,
author='Petr Viktorin',
author_email='[email protected]',
keywords='bresenham,pixel art',
license='MIT',
url='https://github.com/encukou/bresenham',
py_modules=['bresenham'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries',
],
zip_safe=False,
)