-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (36 loc) · 1.08 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
40
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim: fenc=utf-8 ts=2 et sw=2 sts=2
#
# Copyright © 2016 Mohammad Amin Sameti <[email protected]>
#
# Distributed under terms of the GNU General Public License v3 license.
"""
setup PyBehnevis
"""
from setuptools import setup, find_packages
try:
with open('README','r') as f:
readme = f.read()
except Exception:
readme = 'dependency-free wrapper for Behnevis API'
setup(
name='pybehnevis',
version='0.1.2',
description='python wrapper for Behnevis API',
long_description=readme,
author='Mohammad Amin Sameti',
author_email='[email protected]',
url='https://github.com/mamins1376/PyBehnevis/',
license='GNU General Public License v3 or later',
keywords = 'pybehnevis api wrapper python3',
packages=find_packages(),
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Software Development',
'Topic :: Internet :: WWW/HTTP',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta'
]
)