-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
39 lines (34 loc) · 1.2 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
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
long_description = open(os.path.join(here, 'README.rst')).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='python-aqi',
version="0.6.1",
author="Stefan \"hr\" Berder",
author_email="[email protected]",
license="BSD 3-Clause",
packages=find_packages(exclude=['contrib', 'docs', 'test*']),
url='https://github.com/hrbonz/python-aqi',
description='A library to convert between AQI value and pollutant '
'concentration (µg/m³ or ppm)',
long_description=long_description,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Healthcare Industry',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
keywords='air quality pm2.5 EPA MEP',
entry_points = {
'console_scripts': [
'aqi=aqi:console_aqi',
],
},
)