-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.35 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
import sys
from setuptools import setup, find_packages
from linkie import __version__
if not sys.version_info[0] == 3:
sys.exit('Sorry, currently only Python 3 is supported.')
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('README.rst') as f:
long_description = f.read()
setup(
name='linkie',
version=__version__,
description='Linkie looks through files for broken links using Python 3.',
long_description=long_description,
url='https://github.com/uccser/linkie',
author=('University of Canterbury Computer'
'Science Education Research Group'),
author_email='csse-education-research@canterbury.ac.nz',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML'
],
keywords='link url checker',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
python_requires='~=3.4',
entry_points={
'console_scripts': [
'linkie = linkie.linkie:main',
],
}
)