-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 896 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 896 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
from setuptools import setup
with open('README.rst') as file:
README = file.read()
setup(
name = 'imgur-scraper',
packages = ['imgurscraper'],
scripts = ['bin/imgur-scrape'],
install_requires = ['requests'],
version = '0.1.2',
description = 'An imgur album scraper',
long_description = README,
author = 'iceTwy',
author_email = 'icetwy@icetwy.re',
license = 'MIT',
url = 'https://github.com/iceTwy/imgur-scraper',
keywords = ['imgur', 'album', 'scraper'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Internet'
]
)