-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (35 loc) · 1.21 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
from __future__ import print_function
from setuptools import setup, find_packages
setup(name='pyweaving',
version='0.0.8.dev',
description='Python Weaving Tools',
long_description='',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Graphics',
],
keywords='weaving handweaving wif draft pattern',
url='https://github.com/storborg/pyweaving',
author='Scott Torborg',
author_email='[email protected]',
install_requires=[
'Pillow>=2.1.0', # Provides PIL
'six>=1.5.2',
],
license='MIT',
packages=find_packages(),
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False,
entry_points="""\
[console_scripts]
pyweaving = pyweaving.cmd:main
""")