-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
26 lines (24 loc) · 806 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
import os
from setuptools import setup, find_packages
long_desc = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name="MorningScraper",
version="0.1",
author="Toby Dacre",
author_email="[email protected]",
description=('Simple scraper for morningstar.co.uk'),
license="LGPLv2",
keywords="morningstar",
url="https://github.com/tobes/MorningScraper",
packages=find_packages(),
long_description=long_desc,
install_requires=['beautifulsoup4'],
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: "
"GNU Lesser General Public License v2 (LGPLv2)",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
)