-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
29 lines (27 loc) · 805 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
28
29
import setuptools
with open('README.md', encoding="utf8") as f:
readme = f.read()
setuptools.setup(
name='pyscp',
version='1.0.18',
description='Python API and utilities for the scp-wiki.net website.',
long_description=readme,
url='https://github.com/anqxyr/pyscp/',
author='anqxyr',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Other Audience',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4'],
packages=['pyscp'],
install_requires=[
'arrow',
'beautifulsoup4',
'blessings',
'lxml==3.3.3',
'requests',
'peewee==2.8.0'],
)