-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add files for uploading package to PyPI
- Loading branch information
1 parent
8f79fe3
commit 83035d3
Showing
3 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools>=42", | ||
"wheel" | ||
] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[metadata] | ||
name = asdfghjkl | ||
version = 0.1a1 | ||
author = Kazuki Osawa | ||
author_email = [email protected] | ||
description = ASDL: Automatic Second-order Differentiation (for Fisher, Gradient covariance, Hessian, Jacobian, and Kernel) Library | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
url = https://github.com/kazukiosawa/asdfghjkl | ||
project_urls = | ||
Bug Tracker = https://github.com/kazukiosawa/asdfghjkl/issues | ||
classifiers = | ||
Programming Language :: Python :: 3 | ||
License :: OSI Approved :: MIT License | ||
Operating System :: OS Independent | ||
|
||
[options] | ||
packages = find: | ||
python_requires = >=3.6 | ||
install_requires = | ||
torch >= 1.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,4 @@ | ||
from setuptools import find_packages, setup | ||
import setuptools | ||
|
||
with open('requirements.txt') as f: | ||
requirements = f.read().splitlines() | ||
|
||
setup( | ||
name='asdfghjkl', | ||
version='0.0.1', | ||
description='ASDL: Automatic Second-order Differentiation (for Fisher, Gradient covariance, Hessian, Jacobian, and Kernel) Library', | ||
install_requires=requirements, | ||
packages=find_packages(include=['asdfghjkl', 'asdfghjkl.*']), | ||
python_requires='>=3.6' | ||
) | ||
if __name__ == "main": | ||
setuptools.setup() |