[PACKAGING] Added some more files for packaging

This commit is contained in:
Philippe Tillet
2020-05-04 08:58:58 -04:00
committed by Philippe Tillet
parent c73dee080c
commit 3709f564e1
4 changed files with 14 additions and 1 deletions

View File

@@ -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

0
python/README.md Normal file
View File

2
python/setup.cfg Normal file
View File

@@ -0,0 +1,2 @@
[metadata]
description-file = README.md

View File

@@ -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',
],
)