-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (43 loc) · 1.64 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
from setuptools import setup, find_packages
import os
ROOT = os.path.abspath(os.path.dirname(__file__))
VERSION = '21.02.02'
def get_requirements(filename):
return open(os.path.join(ROOT, filename)).read().splitlines()
setup(
name='pysaint',
packages=find_packages(),
include_package_data=True,
install_requires=get_requirements('requirements.txt'),
tests_require=get_requirements('test-requirements.txt'),
version=VERSION,
description='Python module for saint.ssu.ac.kr',
long_description=open(os.path.join(ROOT, 'README.md')).read(),
long_description_content_type='text/markdown',
author='gomjellie',
author_email='[email protected]',
url='https://github.com/gomjellie/pysaint',
download_url='https://pypi.python.org/pypi/pysaint',
license='MIT',
platforms="Posix; MacOS X; Windows",
test_suite='nose.collector',
entry_points='''
[console_scripts]
course_parser=course_parser.scripts.cli:main
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Testing',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
],
)