-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 672 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
from setuptools import setup,find_packages
import os
from fliscopt import __version__
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name='fliscopt',
version=__version__,
description='Flight scheduling optimization using Genetic Algorithm variants and other algorithms. ',
license="MIT",
long_description=long_description,
long_description_content_type='text/markdown',
author='Ankit Grover, Jones Granatyr',
author_email='agrover112@gmail.com',
packages=find_packages(),
platforms=['linux','macos','unix'],
install_requires=[
'matplotlib','rich'
],
python_requires='>=3.7.10')