-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
33 lines (28 loc) · 804 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
28
29
30
31
32
33
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='maxcube',
version='0.0.1',
description='Python API to Max Cube ELV',
long_description=readme,
author='Ales Zoulek',
author_email='[email protected]',
url='https://github.com/aleszoulek/maxcube',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
entry_points = {
'console_scripts': [
'maxcube = maxcube.scripts.main:main',
],
},
test_suite = 'nose.collector',
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
)