-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (42 loc) · 1.47 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
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="generallibrary",
author='Rickard "Mandera" Abraham',
author_email="[email protected]",
version="2.10.0",
description="Random useful code categorized into modules.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
'generalimport',
'generaltool',
'packaging',
'pyperclip',
'pytz',
'dill',
],
url="https://github.com/ManderaGeneral/generallibrary",
license="apache2",
packages=find_namespace_packages(exclude=("build*", "dist*")),
extras_require={
'table': ['pandas', 'tabulate'],
'graph': ['matplotlib', 'networkx'],
'full': ['matplotlib', 'networkx', 'pandas', 'tabulate'],
},
classifiers=[
'Topic :: Software Development :: Libraries',
'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',
],
)