-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (30 loc) · 1.15 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
from setuptools import setup, find_namespace_packages
from pathlib import Path
try:
long_description = (Path(__file__).parent / 'README.md').read_text(encoding='utf-8')
except FileNotFoundError:
long_description = 'Readme missing'
setup(
name="generalimport",
author='Rickard "Mandera" Abraham',
author_email="[email protected]",
version="0.5.2",
description="Handle all your optional dependencies with a single call!",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[],
url="https://github.com/ManderaGeneral/generalimport",
license="apache2",
packages=find_namespace_packages(exclude=("build*", "dist*")),
extras_require={},
classifiers=[
'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',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
)