-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 915 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
30
31
32
import setuptools
with open('README.txt') as f:
readme = f.read()
setuptools.setup(
name='pyscp',
version='1.0.18',
description='API Python y utilidades para la página web lafundacionscp.com.',
long_description=readme,
url='https://github.com/Andres2055/pyscp/tree/Espanish',
translator = 'Andrés C.',
author='anqxyr',
tranlator_email = '[email protected]',
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',
'logbook'],
)