-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.23 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.23 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
37
from setuptools import setup
import os
import sys
if sys.version_info[0] < 3:
with open('README.md') as f:
long_description = f.read()
else:
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(name='BatAlgorithm',
description='Bat algorithm implementation',
long_description_content_type="text/markdown",
long_description=long_description,
author='Iztok Fister Jr. and Marko Burjek',
version='0.3.1',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Software Development'
],
include_package_data=True,
url='https://github.com/buma/BatAlgorithm',
py_modules=['BatAlgorithm']
)