-
Notifications
You must be signed in to change notification settings - Fork 332
/
setup.py
49 lines (42 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
# Import modules
from setuptools import find_packages, setup
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
with open("requirements.in") as f:
requirements = f.read().splitlines()
with open("requirements-dev.txt") as f:
dev_requirements = f.read().splitlines()
setup(
name="pyswarms",
version="1.3.0",
description="A Python-based Particle Swarm Optimization (PSO) library.",
long_description=readme,
long_description_content_type="text/markdown",
author="Lester James V. Miranda",
author_email="[email protected]",
url="https://github.com/ljvmiranda921/pyswarms",
packages=find_packages(exclude=["docs", "tests"]),
include_package_data=True,
install_requires=requirements,
tests_require=dev_requirements,
extras_require={"test": dev_requirements},
license="MIT license",
zip_safe=False,
keywords="pyswarms",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
test_suite="tests",
)