This repository has been archived by the owner on Jan 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
40 lines (36 loc) · 1.5 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
from distutils.core import setup
from setuptools import setup
setup(
name = 'spice_api',
packages = ['spice_api'], # this must be the same as the name above
version = '1.0.4',
description = 'spice is a pure Python API that wraps around MALs Official API and makes it much better.',
long_description = open('README.md').read(),
license = 'MIT',
author = 'Mehrab Hoque',
author_email = '[email protected]',
url = 'https://github.com/Utagai/spice', # use the URL to the github repo
classifiers = [
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
keywords = ['spice', 'MyAnimeList', 'API'], # arbitrary keywords
install_requires = [
'requests',
'beautifulsoup4',
'lxml'
],
)