-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (26 loc) · 828 Bytes
/
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
from setuptools import setup
with open("README.md", 'r') as f:
long_description = f.read()
setup(
name = 'secan',
version='0.0.1',
description='Section Analysis - modelling and analysis of custom cross-sections',
keywords=['reinforced-concrete',
'beam-analysis',
'concrete-design',
'cross-section',
'structural-engineering',
'structural-analysis',
'eurocode2',
'NBR6118'],
author = 'Maurício Bonatte',
author_email='[email protected]',
url = 'https://github.com/mbonatte/secan',
license='MIT',
long_description=long_description,
# Dependencies
install_requires=['numpy',
'matplotlib'],
# Packaging
packages =['secan'],
)