-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 964 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
27
import os
from setuptools import setup, find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='skiscraper', # uhuh such a great name
version=open('VERSION').read().strip('\n'),
description='Find informations about ski centers in Trentino',
long_description=README,
license='FreeBSD License',
url='https://github.com/MPBAUnofficial/skiscraper/',
author='Marco Dallagiacoma',
author_email='[email protected]',
packages=['skiscraper', 'skiscraper.skicenters'],
include_package_data=True,
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: FreeBSD License', # cosi tanto per
'Operating System :: OS Indipendent',
],
install_requires=['requests', 'BeautifulSoup4', 'lxml'],
zip_safe=False,
)