-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 1.23 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
import os
from setuptools import find_packages, setup
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
setup(
name='bai-lockbox',
version='0.0.7',
packages=find_packages(exclude=['docs', 'tests']),
install_requires=[
'six',
],
test_suite='nose.collector',
tests_require=['nose', 'coverage'],
include_package_data=True,
license='Apache License 2.0',
description='A library for parsing files in the BAI lockbox format.',
long_description=README,
url='https://www.github.com/FundersClub/bai-lockbox',
author='Jon Friedman / FundersClub Inc.',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry'
],
)