-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (48 loc) · 1.67 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python3
from setuptools import setup
# To use a consistent encoding
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Read version from central version file
with open(path.join(here, 'version.txt'), encoding='utf-8') as f:
version = f.read().strip()
# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='challenges',
version=version,
description='Library to assist programming, testing and execution of '
'solutions for coding challenges like those on stepik.org or'
'rosalind.info',
long_description=long_description,
keywords='education challenges bioinformatics Coursera Stepik Rosalind',
url='https://github.com/elmar-hinz/Python.Challenges',
author='Elmar Hinz',
author_email='[email protected]',
license='MIT',
packages=['challenges', 'HelloWorld'],
package_data={
'HelloWorld': ['sample.txt', 'result.txt'],
'challenges': ['version.txt'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'challenge=challenges:main',
'stepik=challenges:main',
'rosalind=challenges:main',
],
},
scripts=['bin/challenge'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Topic :: Education :: Computer Aided Instruction (CAI)',
],
)