-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
60 lines (58 loc) · 2.65 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# To publish on PyPi, run the following
# python setup.py sdist
# twine upload dist/*
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description. It's nice, because now 1) we have a top level
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "crysx_nn",
version = "0.1.8", # DONT FORGET TO CHANGE THE VERSION IN __INIT__.py
author = "Manas Sharma",
author_email = "[email protected]",
description = ("A simplistic and efficient pure-python neural network library from Phys Whiz."),
license = "MIT",
keywords = ["neural network", "pure python", "crysx", "numba nn", "machine learning", "ML", "deep learning", "deepL", "MLP", "perceptron","phys whiz","manas sharma","bragitoff","crysx"],
url = "https://github.com/manassharma07/crysx_nn",
download_url = 'https://github.com/manassharma07/crysx_nn/archive/refs/tags/v_0.1.8.tar.gz',
packages=['crysx_nn'],
long_description=read('README.md'),
long_description_content_type='text/markdown',
install_requires=['numba>=0.54.1',
'numpy>=1.19.2',
'autograd',
'tqdm',
'opt_einsum',
'nnv',
'matplotlib',
'numexpr',
'tomli',
'Pillow',
'opencv-python' ,
'seaborn'
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.0', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
],
)