-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 1.13 KB
/
Copy pathsetup.py
File metadata and controls
29 lines (25 loc) · 1.13 KB
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
from setuptools import setup, find_packages
from setuptools_rust import Binding, RustExtension
from evogression import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setup(name='evogression',
version=__version__,
packages=find_packages(),
license='MIT',
author='Zach Bateman',
description='Evolutionary Regression',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/zachbateman/evogression.git',
download_url='https://github.com/zachbateman/evogression/archive/v_' + __version__ + '.tar.gz',
keywords=['REGRESSION', 'MACHINE', 'LEARNING', 'EVOLUTION'],
install_requires=['pandas'],
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
rust_extensions=[RustExtension("evogression.rust_evogression", binding=Binding.PyO3)]
)