Skip to content

Commit

Permalink
Minor changes to build/setup
Browse files Browse the repository at this point in the history
  • Loading branch information
oysstu committed Nov 13, 2022
1 parent 480e9a9 commit 6a070f2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
13 changes: 13 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[build-system]
requires = [
"setuptools>=42",
"numpy",
]

[tool.poetry]
packages = [
{ include = "tools" },
]


build-backend = "setuptools.build_meta"
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,23 @@ def main():

# Run setup script
setup(name='pyxtf',
version='1.3.0',
version='1.3.1',
description='eXtended Triton Format (XTF) file interface',
long_description=long_description,
long_description_content_type='text/markdown',
author='Oystein Sture',
author_email='[email protected]',
url='https://github.com/oysstu/pyxtf',
project_urls={
"Bug Tracker": "https://github.com/oysstu/pyxtf/issues",
},
license='MIT',
setup_requires=['numpy>=1.11'],
install_requires=['numpy>=1.11', 'matplotlib>=1.5.1'],
install_requires=['numpy>=1.11'],
extras_require={'Plotting': ['matplotlib>=1.5.1']},
packages=['pyxtf', 'pyxtf.vendors'],
package_data={'': ['*.pyi']},
include_package_data=True,
use_2to3=False,
classifiers=[
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 6a070f2

Please sign in to comment.