-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
52 lines (43 loc) · 1.74 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
50
51
52
# -*- coding: utf-8 -*-
"""
Created on Thu May 20 17:06:19 2021
@author: Dang Trung Anh
"""
import os
from pip._internal.network.session import PipSession
from setuptools import setup, find_packages
VERSION = '1.0.6'
DESCRIPTION = 'An Open-Source Nature-Inspired Optimization Clustering Framework in Python'
from pip._internal.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session=PipSession())
reqs = [str(ir.requirement) for ir in install_reqs]
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'long_description.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
# the name must match the folder name 'EvoCC'
name="EvoCluster",
version=VERSION,
author="Raneem Qaddoura, Hossam Faris, Ibrahim Aljarah, and Pedro A. Castillo",
author_email="[email protected], [email protected]",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
# package_dir={"": "EvoCluster"},
packages=find_packages(),
# add any additional packages that
install_requires=reqs,
url='https://github.com/RaneemQaddoura/EvoCluster',
keywords=['python', 'first package'],
classifiers= [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
package_data = {'': ['datasets/*.csv']},
)