-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name='slushie',
version='0.2.4',
packages=find_packages(where='src'),
package_dir={'': 'src'},
# Dependencies
install_requires=[
# Add your dependencies here (e.g., 'numpy>=1.18.5')
],
# Metadata
author='Salvador Aleguas',
author_email='salvadoraleguas@example.com', # Add your email here
description='Slushie: A Python library for relative path manipulation.',
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
license='MIT',
keywords='path sys-path manipulation python-path module-path',
url='https://github.com/saleguas/slushie',
# Specifying python requires
python_requires='>=3',
# Classifier (Optional)
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
],
)