Setup for package install with pip
This commit is contained in:
parent
21a248181b
commit
ac0024bd09
6 changed files with 40 additions and 0 deletions
4
MANIFEST.in
Normal file
4
MANIFEST.in
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
include LICENSE
|
||||||
|
include README.md
|
||||||
|
recursive-include docs *
|
||||||
|
recursive-include jepl *
|
||||||
3
pyproject.toml
Normal file
3
pyproject.toml
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[build-system]
|
||||||
|
requires = ['setuptools>=40.8.0']
|
||||||
|
build-backend = 'setuptools.build_meta'
|
||||||
30
setup.cfg
Normal file
30
setup.cfg
Normal file
|
|
@ -0,0 +1,30 @@
|
||||||
|
[metadata]
|
||||||
|
name = django-tags
|
||||||
|
version = 0.1
|
||||||
|
description = A Library for Elecrical Engineeing
|
||||||
|
long_description = file: readme.md
|
||||||
|
url = https://www.jmkengineering.com
|
||||||
|
author = Jeff MacKinnon
|
||||||
|
author_email = jeff@jmkengineering.com
|
||||||
|
license = GNU-AFFERO
|
||||||
|
classifiers =
|
||||||
|
Environment :: Web Environment
|
||||||
|
Intended Audience :: Developers
|
||||||
|
License :: GNU AFFERO
|
||||||
|
Operating System :: OS Independent
|
||||||
|
Programming Language :: Python
|
||||||
|
Programming Language :: Python :: 3
|
||||||
|
Programming Language :: Python :: 3 :: Only
|
||||||
|
Programming Language :: Python :: 3.8
|
||||||
|
Programming Language :: Python :: 3.9
|
||||||
|
Programming Language :: Python :: 3.10
|
||||||
|
Programming Language :: Python :: 3.11
|
||||||
|
Programming Language :: Python :: 3.12
|
||||||
|
|
||||||
|
[options]
|
||||||
|
include_package_data = true
|
||||||
|
packages = find:
|
||||||
|
python_requires = >=3.8
|
||||||
|
install_requires =
|
||||||
|
Numpy
|
||||||
|
Pandas
|
||||||
3
setup.py
Normal file
3
setup.py
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup()
|
||||||
Loading…
Add table
Reference in a new issue