forked from danhper/bigcode-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.01 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
LONG_DESCRIPTION = f.read()
setup(
name="bigcode-fetcher",
version="0.1.2",
description="Tool to search and fetch code from GitHub",
long_description=LONG_DESCRIPTION,
author="Daniel Perez",
author_email="tuvistavie@gmail.com",
url="https://github.com/tuvistavie/bigcode-tools/tree/master/code-fetcher",
download_url="https://github.com/tuvistavie/bigcode-tools/archive/master.zip",
include_package_data=True,
zip_safe=True,
packages=find_packages(exclude=["tests"]),
install_requires=["requests", "grequests"],
scripts=["bin/bigcode-fetcher"],
extras_require={
"test": ["nose", "requests_mock"]
},
test_suite="tests",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
],
)