-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (29 loc) · 950 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'''
python setup.py sdist bdist_wheel
python -m twine upload dist/*
'''
import os
from setuptools import find_packages, setup
from activations import __version__
install_requires = "torch"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
install_requires=install_requires,
name="activations",
version=__version__,
author="densechen",
author_email="densechen@foxmail.com",
description="activations: a package contains different kinds of activation functions",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/densechen/AReLU",
download_url = 'https://github.com/densechen/AReLU/archive/master.zip',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
license="MIT",
python_requires='>=3.6',
)