Skip to content

Commit

Permalink
ENH: Demonstrate the use of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Feb 11, 2024
1 parent 7886e44 commit dfc171b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
from setuptools import setup, find_packages

setup(
name="asv_samples",
version="0.1.0",
description="A set of asv samples",
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
author="Rohit Goswami",
author_email="[email protected]",
url="https://github.com/HaoZeke/asv_samples",
license="LICENSE",
packages=find_packages(include=["asv_samples", "asv_samples.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
project_urls={
"Bug Tracker": "https://github.com/HaoZeke/asv_samples/issues",
}
)

0 comments on commit dfc171b

Please sign in to comment.