Skip to content

Commit 9909065

Browse files
committed
ENH: Demonstrate the use of setup.py
1 parent a96a817 commit 9909065

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

setup.py

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="asv_samples",
5+
version="0.1.0",
6+
description="A set of asv samples",
7+
long_description=open('readme.md').read(),
8+
long_description_content_type='text/markdown',
9+
author="Rohit Goswami",
10+
author_email="[email protected]",
11+
url="https://github.com/HaoZeke/asv_samples",
12+
license="LICENSE",
13+
packages=find_packages(include=["asv_samples", "asv_samples.*"]),
14+
classifiers=[
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: OS Independent",
18+
],
19+
python_requires='>=3.6',
20+
project_urls={
21+
"Bug Tracker": "https://github.com/HaoZeke/asv_samples/issues",
22+
}
23+
)

0 commit comments

Comments
 (0)