-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 982 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
import os
from setuptools import setup, find_packages
# Utility function to read the content of a file file.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "OptimizationUtils",
version = "1.0.0",
install_requires=[],
author = "Miguel Oliveira",
author_email = "[email protected]",
description = ("A set of utilities for using the python scipy optimizer functions"),
license = "GPLv3",
keywords = "optimization",
url = "https://github.com/miguelriemoliveira/OptimizationUtils",
packages=find_packages(exclude=['test*']),
package_dir={'OptimizationUtils': 'OptimizationUtils'},
long_description=read('README.md'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 2.7",
"Topic :: Utilities",
],
)