-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 856 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 856 Bytes
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
from setuptools import setup
setup(
name="scirate",
description="Python wrapper for extracting content from Scirate.",
long_description=open("README.rst").read(),
url="https://github.com/vprusso/scirate",
author="Vincent Russo",
author_email="vincentrusso1@gmail.com",
packages=["scirate"],
version="0.1.0",
install_requires=['nose', 'bs4', 'lxml', 'requests'],
license="MIT",
keywords=["scirate", "scirate API", "scirate python"],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
],
project_urls={
"Homepage": "http://vprusso.github.io/",
}
)