-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 844 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 844 Bytes
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
# setup.py
# Author: Sébastien Combéfis
# Version: March 24, 2017
from setuptools import find_packages, setup
setup(
name='ukonline.pyds',
version='0.0.1a1',
description='Data structures implementations in Python for pedagogical purpose.',
url='https://github.com/ukonline/pyds',
author='UKOnline',
author_email='info@ukonline.be',
license='GPLv3',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries'
],
keywords='data-structures',
packages=find_packages(exclude=['contrib', 'docs', 'tests'])
)