-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 806 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 806 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
27
28
from setuptools import setup, find_packages
with open('README.md') as readme_file:
long_description = readme_file.read()
with open('VERSION') as version_file:
version = version_file.read()
setup(
name='ranking_sorting',
version=version,
description='Ranking and Sorting algorithms for vtalks.net',
long_description=long_description,
long_description_content_type="text/markdown",
author='Raül Pérez',
author_email='hellol@vtalks.net',
url='https://github.com/vtalks/ranking_sorting',
packages=find_packages(),
install_requires=[
],
license='Apache 2',
test_suite='tests',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
)
)