-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
27 lines (26 loc) · 947 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
setup(
name='sfpl',
packages=['sfpl'],
version='1.5.6',
description='Unofficial Python API for SFPL',
author='Kai Chang',
url='https://github.com/kajchang/sfpl-scraper',
license='MIT',
long_description_content_type='text/markdown',
long_description=open(os.path.join(os.path.abspath(
os.path.dirname(__file__)), 'README.md')).read(),
install_requires=[open(os.path.join(os.path.abspath(
os.path.dirname(__file__)), 'requirements.txt')).read().split('\n')[:-1]],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)