-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 765 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 765 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
import nbp
setup(
name='nbp',
version=nbp.VERSION,
description='Polish National Bank currency rate downloader.',
author='Kuba Janoszek',
author_email='kuba.janoszek@gmail.com',
url='https://github.com/jqb/python-nbp/tree/ver-%s' % nbp.VERSION,
packages=find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
include_package_data=True,
setup_requires=['setuptools_git'],
zip_safe=False,
)