forked from warmwaver/calla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 665 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 665 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='calla',
version='0.4',
description='Open implementation of formulas in specifications or codes for structural engineering',
url='https://github.com/warmwaver/calla',
author='warmwaver',
author_email='warmwaver@126.com',
packages=['calla','calla.GB','calla.JTG','calla.CJJ','calla.TB','callex'],
#packages=find_packages(exclude=['test','docs']),
long_description="Open implementation of formulas in specifications or codes for structural engineering.",
license="MIT",
platforms=["any"],
python_requires='>=3.10',
)