Skip to content

Commit

Permalink
prep for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
SethEBaldwin committed Mar 31, 2021
1 parent 71cb12e commit da4e225
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[build-system]
requires = [
"setuptools>=42",
"wheel",
"numpy",
"scipy",
"numba"
]
build-backend = "setuptools.build_meta"
24 changes: 24 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[metadata]
name = mdscuda
version = 0.1.0
author = Seth Baldwin
author_email = [email protected]
description = cuda implementation of Multidimensional Scaling
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/SethEBaldwin/mds
project_urls =
Bug Tracker = https://github.com/SethEBaldwin/mds/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent

[options]
package_dir =
= .
packages = find:
python_requires = >=3.7

[options.packages.find]
where = .
11 changes: 11 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from setuptools import setup, find_packages, Extension

setup(
packages = find_packages(),
install_requires=[
'numpy>=1.19.0',
'pandas>=1.0.0',
'scipy>=1.6.0',
'numba>=53.0'
]
)

0 comments on commit da4e225

Please sign in to comment.