-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.01 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.01 KB
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from setuptools import setup, find_packages
import pysis
import os
# Odd hack to get 'python setup.py test' working on py2.7
try:
import multiprocessing
import logging
except ImportError:
pass
setup(
name=pysis.__title__,
version=pysis.__version__,
author=pysis.__author__,
author_email=pysis.__email__,
url='https://github.com/sustainableis/python-sis',
description='Python wrapper for the SIS API',
long_description=open('README.rst').read(),
license='',
packages=find_packages(exclude=['*tests*']),
zip_safe=False,
install_requires=map(str.strip, open(os.path.join('requirements', 'base.txt'))),
#include_package_data=True,
#classifiers=(
# 'Programming Language :: Python',
# 'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3.3+',
# 'License :: None',
# 'Operating System :: OS Independent',
# 'Intended Audience :: Developers',
#),
)