-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (21 loc) · 669 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (21 loc) · 669 Bytes
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
from setuptools import setup, find_packages
from src import wise as wise
with open('README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='wise-py-utils',
author=wise.__author__,
version=wise.__version__,
description='Python utils created by Zac the Wise',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/techWiz-3/python-utils",
keywords="python-utils python-utilities",
packages=find_packages(
where='src',
),
package_dir={"":"src"},
install_requires=required,
)