-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
72 lines (69 loc) · 2.27 KB
/
Copy pathsetup.py
File metadata and controls
72 lines (69 loc) · 2.27 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
"""
shipstab kurulum dosyası.
PyPI'ye yüklemek için: python -m build && twine upload dist/*
"""
from setuptools import setup, find_packages
import os
# README'yi oku
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="shipstab",
version="0.1.0",
author="shipstab contributors",
author_email="shipstab@example.com",
description="Python Gemi Stabilitesi Kütüphanesi — "
"Hidrostatik, GZ eğrisi, IMO kriterleri, trim & hasar stabilitesi",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yourusername/shipstab",
project_urls={
"Bug Tracker" : "https://github.com/yourusername/shipstab/issues",
"Documentation": "https://shipstab.readthedocs.io",
},
packages=find_packages(exclude=["tests*", "examples*"]),
python_requires=">=3.9",
install_requires=[
"numpy>=1.23",
"scipy>=1.9",
],
extras_require={
"plot" : ["matplotlib>=3.5"],
"report" : ["reportlab>=3.6", "matplotlib>=3.5"],
"dev" : [
"pytest>=7.0",
"pytest-cov",
"black",
"ruff",
"mypy",
"build",
"twine",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
],
keywords=[
"naval architecture", "ship stability", "hydrostatics",
"GZ curve", "IMO criteria", "trim", "marine engineering",
"gemi stabilitesi", "hidrostatik",
],
entry_points={
"console_scripts": [
# İleride CLI aracı eklenebilir
# "shipstab=shipstab.cli:main",
],
},
)