We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7886e44 commit dfc171bCopy full SHA for dfc171b
setup.py
@@ -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