-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 806 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
from setuptools import setup
setup(
name='index-by',
version='0.1.0',
url='https://github.com/twiebe/py-index-by',
license='BSD',
author='Thomas Wiebe',
author_email='[email protected]',
description='Index objects in a sequence easily',
long_description='Index objects in a sequence easily',
package_dir={'': 'src'},
packages=['index_by', 'index_by.modifiers'],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[],
test_suite='tests',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)