FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
BatAlgorithm/setup.py at master · buma/BatAlgorithm · GitHub
buma
/
BatAlgorithm
Public
Notifications
You must be signed in to change notification settings
Fork
16
Star
40
Code
Issues
3
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
BatAlgorithm
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (35 loc) · 1.23 KB
Breadcrumbs
BatAlgorithm
/
setup.py
Copy path
File metadata and controls
38 lines (35 loc) · 1.23 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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'
]
)
Back
|
FazBrowse Home
|
New Git URL