-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.28 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
from setuptools import setup, find_packages
import os
# Read the contents of README.md for PyPI project description
def read_file(filename):
with open(filename, "r", encoding="utf-8") as fh:
return fh.read()
setup(
name='rao_algorithms',
version='0.2.1',
author='Samdeep Kunkunuru',
author_email='[email protected]',
description='BMR and BWR optimization algorithms with constraint handling',
long_description=read_file("README.md"), # Load README.md as the long description
long_description_content_type='text/markdown', # Specify the format of the long description
url='https://github.com/VaidhyaMegha/optimization_algorithms', # URL to GitHub repo
packages=find_packages(),
install_requires=[
'numpy',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
project_urls={ # Additional links to display on PyPI page
'Documentation': 'https://github.com/VaidhyaMegha/optimization_algorithms/wiki',
'Source': 'https://github.com/VaidhyaMegha/optimization_algorithms',
'Bug Reports': 'https://github.com/VaidhyaMegha/optimization_algorithms/issues',
},
)