From 3709f564e14eb6ed01cf11bfa1e5d9debcfb9e4e Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Mon, 4 May 2020 08:58:58 -0400 Subject: [PATCH] [PACKAGING] Added some more files for packaging --- LICENSE | 2 +- python/README.md | 0 python/setup.cfg | 2 ++ python/setup.py | 11 +++++++++++ 4 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 python/README.md create mode 100644 python/setup.cfg diff --git a/LICENSE b/LICENSE index 464fb143d..24d8ee2c6 100755 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -/* Copyright 2018-2019 Philippe Tillet +/* Copyright 2018-2020 Philippe Tillet * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files diff --git a/python/README.md b/python/README.md new file mode 100644 index 000000000..e69de29bb diff --git a/python/setup.cfg b/python/setup.cfg new file mode 100644 index 000000000..224a77957 --- /dev/null +++ b/python/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/python/setup.py b/python/setup.py index 19794ee21..6c1e0e64b 100644 --- a/python/setup.py +++ b/python/setup.py @@ -109,4 +109,15 @@ setup( ext_modules=[CMakeExtension('triton', 'triton/_C/')], cmdclass=dict(build_ext=CMakeBuild), zip_safe=False, + # for PyPI + keyword=['Compiler', 'Deep Learning'] + url='https://github.com/ptillet/triton/' + download_url='https://github.com/ptillet/triton/archive/v0.1.tar.gz' + classifiers=[ + 'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package + 'Intended Audience :: Developers', # Define that your audience are developers + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', # Again, pick a license + 'Programming Language :: Python :: 3.6', + ], )